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.
 
 
 
 
 
 

22 lines
271 B

/**
* Modal names to export
*/
const enum Modal {
}
/**
* Modal export type
*/
type ModalTypes = { [K in keyof typeof Modal]: any }
/**
* Modals to export
*/
export const modals: ModalTypes = {
}
/**
* Export the list of modal names
*/
export default Modal;