Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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;