// This file is part of the Luau programming language and is licensed under MIT License; see LICENSE.txt for details #pragma once #include #include namespace Luau::Require { enum class PathType { RelativeToCurrent, RelativeToParent, Aliased, Unsupported }; PathType getPathType(std::string_view path); std::pair splitPath(std::string_view path); } // namespace Luau::Require