7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
|
export let allowedTags: string[];
|
||
|
export let allowedAttributes: {
|
||
|
a: string[];
|
||
|
img: string[];
|
||
|
"*": string[];
|
||
|
};
|