@fifteen/design-system-vue
Version:
Vue 3 (Composition API + Typescript) implementation of the Fifteen Design System
20 lines (19 loc) • 685 B
TypeScript
export interface FTextContentProps {
/**
* HTML or raw text content as string
*/
source: string;
/**
* Allowed tags
*/
allowedTags?: (keyof HTMLElementTagNameMap)[];
/**
* Denser styling
*/
dense?: boolean;
}
declare const _default: import('vue').DefineComponent<FTextContentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<FTextContentProps> & Readonly<{}>, {
allowedTags: (keyof HTMLElementTagNameMap)[];
dense: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;