UNPKG

160 BTypeScriptView Raw
1interface Options {
2 separator?: string;
3 transform?: number;
4}
5declare function slugize(str: string, options?: Options): string;
6export = slugize;