vending-machine/mobile/node_modules/licia/splitPath.d.ts
2026-04-03 06:07:13 +08:00

10 lines
126 B
TypeScript

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