diff options
Diffstat (limited to 'desktop/node_modules/filenamify/filenamify-path.d.ts')
-rw-r--r-- | desktop/node_modules/filenamify/filenamify-path.d.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/desktop/node_modules/filenamify/filenamify-path.d.ts b/desktop/node_modules/filenamify/filenamify-path.d.ts new file mode 100644 index 0000000..2346602 --- /dev/null +++ b/desktop/node_modules/filenamify/filenamify-path.d.ts @@ -0,0 +1,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; |