mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 07:39:30 +08:00
9 lines
332 B
Text
9 lines
332 B
Text
export declare function string_literal(data: string): {
|
|
type: string;
|
|
value: string;
|
|
};
|
|
export declare function escape(data: string, { only_escape_at_symbol }?: {
|
|
only_escape_at_symbol?: boolean;
|
|
}): string;
|
|
export declare function escape_html(html: any): string;
|
|
export declare function escape_template(str: any): any;
|