@dcodegroup-au/dsg-vue
Version:
Front-end Vue/Tailwind DSG for UntitledUI.
20 lines (19 loc) • 841 B
TypeScript
/**
* ------------------------------------------------
* # Setup: Props/Variables/Models
* ------------------------------------------------
*/
export type DsgAlertType = "gray" | "error" | "warning" | "success";
export interface DsgAlertProps {
title?: string;
message?: string;
type?: DsgAlertType;
hasCloseButton?: boolean;
useToast?: boolean;
timeout?: number | false;
}
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, {}, any>;
export default _default;