You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
1.2 KiB
18 lines
1.2 KiB
|
2 years ago
|
import type { ExtractPropTypes } from 'vue';
|
||
|
|
export declare const alertEffects: readonly ["light", "dark"];
|
||
|
|
export declare const alertProps: {
|
||
|
|
readonly title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly description: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "success" | "warning" | "error" | "info", unknown, "info", boolean>;
|
||
|
|
readonly closable: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
|
||
|
|
readonly closeText: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
|
||
|
|
readonly showIcon: BooleanConstructor;
|
||
|
|
readonly center: BooleanConstructor;
|
||
|
|
readonly effect: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "light" | "dark", unknown, "light", boolean>;
|
||
|
|
};
|
||
|
|
export declare type AlertProps = ExtractPropTypes<typeof alertProps>;
|
||
|
|
export declare const alertEmits: {
|
||
|
|
close: (evt: MouseEvent) => boolean;
|
||
|
|
};
|
||
|
|
export declare type AlertEmits = typeof alertEmits;
|