Files
emacs/lisp/emacs-application-framework/app/mermaid/node_modules/slugify/slugify.d.ts
2020-12-05 21:29:49 +01:00

23 lines
359 B
TypeScript

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;
}
| string,
): string;
export default slugify;