mirror of
https://github.com/futurepress/epub.js.git
synced 2025-10-03 14:59:18 +02:00
17 lines
306 B
TypeScript
17 lines
306 B
TypeScript
export default class Path {
|
|
constructor(pathString: string);
|
|
|
|
parse(what: string): object;
|
|
|
|
isAbsolute(what: string): boolean;
|
|
|
|
isDirectory(what: string): boolean;
|
|
|
|
resolve(what: string): string;
|
|
|
|
relative(what: string): string;
|
|
|
|
splitPath(filename: string): string;
|
|
|
|
toString(): string;
|
|
}
|