Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

filenamify-path.d.ts 244B

12345678
  1. import filenamify = require('./filenamify');
  2. /**
  3. Convert the filename in a path a valid filename and return the augmented path.
  4. */
  5. declare const filenamifyPath: (path: string, options?: filenamify.Options) => string;
  6. export = filenamifyPath;