版博士V2.0程序
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

14 行
254 B

  1. interface Options {
  2. context: string;
  3. hashPrefix: string;
  4. }
  5. type Generator = (localName: string, filepath: string) => string;
  6. declare function createGenerator(
  7. pattern: string,
  8. options?: Partial<Options>
  9. ): Generator;
  10. export = createGenerator;