blob: 234660280df986f9d71f464a8e9796ad14d19725 (
plain)
1
2
3
4
5
6
7
8
|
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;
|