@studiocms/blog
Version:
Add a blog to your StudioCMS project with ease!
16 lines (15 loc) • 570 B
TypeScript
declare const renderer: {
name: string;
renderer: (content: string) => Promise<string>;
sanitizeOpts: {
allowElements?: string[] | undefined;
blockElements?: string[] | undefined;
dropElements?: string[] | undefined;
allowAttributes?: Record<string, string[]> | undefined;
dropAttributes?: Record<string, string[]> | undefined;
allowComponents?: boolean | undefined;
allowCustomElements?: boolean | undefined;
allowComments?: boolean | undefined;
} | undefined;
};
export default renderer;