| 1234567891011121314151617181920212223 |
- 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;
- strict?: boolean;
- locale?: string;
- }
- | string,
- ): string;
- export default slugify;
|