uni-ticket-system/node_modules/licia/splitPath.d.ts
2023-12-05 10:11:10 +08:00

10 lines
126 B
TypeScript

declare function splitPath(
path: string
): {
dir: string;
name: string;
ext: string;
};
export = splitPath;