UNPKG

@dcodegroup-au/dsg-vue

Version:

Front-end Vue/Tailwind DSG for UntitledUI.

18 lines (17 loc) 798 B
/** * ------------------------------------------------ * # Setup: Props/Variables/Models * ------------------------------------------------ */ export type DsgAlertType = "gray" | "error" | "warning" | "success"; export interface DsgAlertProps { title?: string; message?: string; type?: DsgAlertType; hasCloseButton?: boolean; } export interface DsgAlertComponentProps { contentProps: DsgAlertProps; } declare const _default: import('vue').DefineComponent<DsgAlertComponentProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<DsgAlertComponentProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>; export default _default;