Files
beall-11ty/node_modules/slugify/slugify.d.ts

25 lines
411 B
TypeScript
Raw Permalink Normal View History

2026-03-31 16:38:22 -07:00
declare namespace 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;
trim?: boolean;
}
| string,
): string;
export default slugify;