Files

10 lines
126 B
TypeScript
Raw Permalink Normal View History

2025-08-11 11:51:38 +08:00
declare function splitPath(
path: string
): {
dir: string;
name: string;
ext: string;
};
export = splitPath;