@f3ve/vue-notify-components
Version:
Vue Notify components
22 lines (17 loc) • 582 B
TypeScript
import { DefineSetupFnComponent } from 'vue';
import { PublicProps } from 'vue';
export declare const VNotification: DefineSetupFnComponent<VNotificationProps, {}, {}, VNotificationProps & {}, PublicProps>;
export declare type VNotificationProps = {
message: string;
color: string;
index: number;
delay: number;
};
export declare const VNotifications: DefineSetupFnComponent<{
notifyComponent?: any;
delay?: number | undefined;
}, {}, {}, {
notifyComponent?: any;
delay?: number | undefined;
} & {}, PublicProps>;
export { }