forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
28 lines (26 loc) · 942 Bytes
/
Copy pathtypes.ts
File metadata and controls
28 lines (26 loc) · 942 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import type { ClerkProviderProps } from '@clerk/clerk-react';
import type { InitialState, Without } from '@clerk/types';
import type React from 'react';
export type ClerkState = {
__type: 'clerkState';
__internal_clerk_state: {
__clerk_ssr_state: InitialState;
__publishableKey: string | undefined;
__proxyUrl: string | undefined;
__domain: string | undefined;
__isSatellite: boolean;
__signInUrl: string | undefined;
__signUpUrl: string | undefined;
__afterSignInUrl: string | undefined;
__afterSignUpUrl: string | undefined;
__clerk_debug: any;
__clerkJSUrl: string | undefined;
__clerkJSVersion: string | undefined;
__telemetryDisabled: boolean | undefined;
__telemetryDebug: boolean | undefined;
};
};
export type TanstackStartClerkProviderProps = Without<ClerkProviderProps, 'publishableKey' | 'initialState'> & {
publishableKey?: string;
children: React.ReactNode;
};