purify.d.ts 194 Bytes
Newer Older
jatuporn Tonggasem's avatar
jatuporn Tonggasem committed
1 2 3 4 5 6
export interface Insert {
    pos: number;
    content: string;
}
export declare function purifyReplacements(content: string): Insert[];
export declare function purify(content: string): string;