send-mail/node_modules/@actions/glob/lib/internal-path.d.ts

16 lines
341 B
TypeScript
Raw Normal View History

2021-06-23 00:18:21 +07:00
/**
* Helper class for parsing paths into segments
*/
export declare class Path {
segments: string[];
/**
* Constructs a Path
* @param itemPath Path or array of segments
*/
constructor(itemPath: string | string[]);
/**
* Converts the path to it's string representation
*/
toString(): string;
}