Path: blob/master/node_modules/@protobufjs/path/index.d.ts
1126 views
/**1* Tests if the specified path is absolute.2* @param {string} path Path to test3* @returns {boolean} `true` if path is absolute4*/5export function isAbsolute(path: string): boolean;67/**8* Normalizes the specified path.9* @param {string} path Path to normalize10* @returns {string} Normalized path11*/12export function normalize(path: string): string;1314/**15* Resolves the specified include path against the specified origin path.16* @param {string} originPath Path to the origin file17* @param {string} includePath Include path relative to origin path18* @param {boolean} [alreadyNormalized=false] `true` if both paths are already known to be normalized19* @returns {string} Path to the include file20*/21export function resolve(originPath: string, includePath: string, alreadyNormalized?: boolean): string;222324