add lisp packages
This commit is contained in:
22
lisp/emacs-application-framework/app/mermaid/node_modules/slugify/slugify.d.ts
generated
vendored
Normal file
22
lisp/emacs-application-framework/app/mermaid/node_modules/slugify/slugify.d.ts
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user