Files
afrobiz/components/modal.type.ts
2023-05-14 00:31:47 +10:00

4 lines
200 B
TypeScript

import { Modal } from '#components';
// seems pretty stoopid that I need to do this in a seperate file but it seems to work
export type ModalType = typeof Modal extends new () => infer T ? T : never;