svelte-clerk
Version:
Svelte Clerk is the easiest way to add authentication and user management to your Svelte and SvelteKit applications. Add sign up, sign in, and profile management to your application in minutes.
46 lines (45 loc) • 2.01 kB
TypeScript
export declare const API_VERSION: string | undefined;
export declare const PUBLISHABLE_KEY: string;
export declare const API_URL: string | undefined;
export declare const TELEMETRY_DISABLED: any;
export declare const TELEMETRY_DEBUG: any;
export declare const SECRET_KEY: string | undefined;
export declare const JWT_KEY: string | undefined;
export declare const Cookies: {
readonly Session: "__session";
readonly Refresh: "__refresh";
readonly ClientUat: "__client_uat";
readonly Handshake: "__clerk_handshake";
readonly DevBrowser: "__clerk_db_jwt";
readonly RedirectCount: "__clerk_redirect_count";
readonly HandshakeNonce: "__clerk_handshake_nonce";
}, Headers: {
readonly Accept: "accept";
readonly AuthMessage: "x-clerk-auth-message";
readonly Authorization: "authorization";
readonly AuthReason: "x-clerk-auth-reason";
readonly AuthSignature: "x-clerk-auth-signature";
readonly AuthStatus: "x-clerk-auth-status";
readonly AuthToken: "x-clerk-auth-token";
readonly CacheControl: "cache-control";
readonly ClerkRedirectTo: "x-clerk-redirect-to";
readonly ClerkRequestData: "x-clerk-request-data";
readonly ClerkUrl: "x-clerk-clerk-url";
readonly CloudFrontForwardedProto: "cloudfront-forwarded-proto";
readonly ContentType: "content-type";
readonly ContentSecurityPolicy: "content-security-policy";
readonly ContentSecurityPolicyReportOnly: "content-security-policy-report-only";
readonly EnableDebug: "x-clerk-debug";
readonly ForwardedHost: "x-forwarded-host";
readonly ForwardedPort: "x-forwarded-port";
readonly ForwardedProto: "x-forwarded-proto";
readonly Host: "host";
readonly Location: "location";
readonly Nonce: "x-nonce";
readonly Origin: "origin";
readonly Referrer: "referer";
readonly SecFetchDest: "sec-fetch-dest";
readonly SecFetchSite: "sec-fetch-site";
readonly UserAgent: "user-agent";
readonly ReportingEndpoints: "reporting-endpoints";
};