@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
11 lines • 302 B
text/typescript
//#region src/types/customPages.d.ts
type CustomPage = {
label: string;
url?: string;
mountIcon?: (el: HTMLDivElement) => void;
unmountIcon?: (el?: HTMLDivElement) => void;
mount?: (el: HTMLDivElement) => void;
unmount?: (el?: HTMLDivElement) => void;
};
//#endregion
export { CustomPage };