22 lines
333 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
declare module slugify {
type ExtendArgs = {
[key: string]: any;
}
export function extend (args: ExtendArgs): void;
}
declare function slugify(
string: string,
options?:
| {
replacement?: string;
remove?: RegExp;
lower?: boolean;
}
| string,
): string;
export default slugify;