@react-crates/modal
Version:
리액트 모달을 쉽게 등록하고 사용가능한 라이브러리입니다.
21 lines (20 loc) • 840 B
TypeScript
import { ReservedModalName, DefaultModalPositionAddBackCover, ModalActionState, ModalLifecycleState, ModalPositionTable, ModalTransactionState, ModalTransition } from "../types";
export declare const MODAL_TRANSACTION_STATE: {
[key in ModalTransactionState]: key;
};
export declare const MODAL_LIFECYCLE_STATE: {
[key in ModalLifecycleState]: key;
};
export declare const MODAL_LIFECYCLE_STATE_LIST: string[];
export declare const MODAL_ACTION_STATE: {
[key in ModalActionState]: key;
};
export declare const RESERVED_MODAL_NAME: {
[key in ReservedModalName]: key;
};
export declare const DEFAULT_DURATION = 200;
export declare const DEFAULT_TRANSITION: ModalTransition;
export declare const MODAL_POSITION: {
[key in DefaultModalPositionAddBackCover]: key;
};
export declare const DEFAULT_POSITION: ModalPositionTable;