add lisp packages

This commit is contained in:
2020-12-05 21:29:49 +01:00
parent 85e20365ae
commit a6e2395755
7272 changed files with 1363243 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
/*!
* Escaper
* https://github.com/kobezzza/Escaper
*
* Released under the MIT license
* https://github.com/kobezzza/Escaper/blob/master/LICENSE
*/
declare const Escaper: {
VERSION: any[];
cache: Record<string, string>;
content: string[];
snakeskinRgxp: RegExp | null;
symbols: string | null;
paste(str: string, content?: string[]);
replace(str: string, withComments?: boolean, content?: string[], snakeskin?: boolean);
replace(str: string, params: {
'@label'?: string,
'@all'?: boolean,
'@comments'?: boolean,
'@strings'?: boolean,
'@literals'?: boolean,
'`'?: boolean,
"'"?: boolean,
'"'?: boolean,
'/'?: boolean,
'//'?: boolean,
'//*'?: boolean,
'//!'?: boolean,
'//#'?: boolean,
'//@'?: boolean,
'//$'?: boolean,
'/*'?: boolean,
'/**'?: boolean,
'/*!'?: boolean,
'/*#'?: boolean,
'/*@'?: boolean,
'/*$'?: boolean
}, content?: string[], snakeskin?: boolean);
};
declare module 'escaper' {
export = Escaper;
}