blob: d8d5cd4e7fd9809fe009e3812f0f03ccb41538e9 (
plain)
1
2
3
4
5
6
|
export declare type HtmlEscaped = {
isEscaped: true;
};
export declare type HtmlEscapedString = string & HtmlEscaped;
export declare type StringBuffer = [string];
export declare const escapeToBuffer: (str: string, buffer: StringBuffer) => void;
|