locale.d.ts 254 B

1234567
  1. export interface ModalLocale {
  2. okText: string;
  3. cancelText: string;
  4. justOkText: string;
  5. }
  6. export declare function changeConfirmLocale(newLocale?: ModalLocale): (() => void) | undefined;
  7. export declare function getConfirmLocale(): ModalLocale;