1 | export declare const noFrontendApiError = "Clerk: You must add the frontendApi prop to your <ClerkProvider>";
|
2 | export declare const noClerkProviderError = "Clerk: You must wrap your application in a <ClerkProvider> component.";
|
3 | export declare const noGuaranteedLoadedError: (hookName: string) => string;
|
4 | export declare const noGuaranteedUserError: (hookName: string) => string;
|
5 | export declare const multipleClerkProvidersError = "Clerk: You've added multiple <ClerkProvider> components in your React component tree. Wrap your components in a single <ClerkProvider>.";
|
6 | export declare const hocChildrenNotAFunctionError = "Clerk: Child of WithClerk must be a function.";
|
7 | export declare const multipleChildrenInButtonComponent: (name: string) => string;
|
8 | export declare const MagicLinkErrorCode: {
|
9 | Expired: string;
|
10 | Failed: string;
|
11 | };
|
12 | declare type MagicLinkError = {
|
13 | code: 'expired' | 'failed';
|
14 | };
|
15 | export declare function isMagicLinkError(err: any): err is MagicLinkError;
|
16 | export {};
|
17 |
|
\ | No newline at end of file |