10 lines
126 B
TypeScript
10 lines
126 B
TypeScript
|
declare function splitPath(
|
||
|
path: string
|
||
|
): {
|
||
|
dir: string;
|
||
|
name: string;
|
||
|
ext: string;
|
||
|
};
|
||
|
|
||
|
export = splitPath;
|