Fixed #1836 - For UseConfirm
parent
8a1987cb02
commit
990fb8d46e
|
@ -1,20 +1,6 @@
|
||||||
export declare function useConfirm(): {
|
import { ConfirmationOptions } from '../confirmationoptions';
|
||||||
require(args:{
|
|
||||||
message?: string;
|
|
||||||
target?: EventTarget;
|
|
||||||
group?: string;
|
|
||||||
icon?: string;
|
|
||||||
header?: string;
|
|
||||||
accept?: Function;
|
|
||||||
reject?: Function;
|
|
||||||
acceptLabel?: string;
|
|
||||||
rejectLabel?: string;
|
|
||||||
acceptIcon?: string;
|
|
||||||
rejectIcon?: string;
|
|
||||||
blockScroll?: boolean;
|
|
||||||
acceptClass?: string;
|
|
||||||
rejectClass?: string;
|
|
||||||
}): void
|
|
||||||
|
|
||||||
close(): void
|
export declare function useConfirm(): {
|
||||||
|
require: (option: ConfirmationOptions) => void;
|
||||||
|
close: () => void;
|
||||||
}
|
}
|
Loading…
Reference in New Issue