9 lines
244 B
TypeScript
Raw Permalink Normal View History

2025-06-30 09:38:03 +08:00
import filenamify = require('./filenamify');
/**
Convert the filename in a path a valid filename and return the augmented path.
*/
declare const filenamifyPath: (path: string, options?: filenamify.Options) => string;
export = filenamifyPath;