@clerk/shared
Version: 
Internal package utils used by the Clerk SDKs
16 lines (14 loc) • 783 B
TypeScript
declare const LEGACY_DEV_INSTANCE_SUFFIXES: string[];
declare const CURRENT_DEV_INSTANCE_SUFFIXES: string[];
declare const DEV_OR_STAGING_SUFFIXES: string[];
declare const LOCAL_ENV_SUFFIXES: string[];
declare const STAGING_ENV_SUFFIXES: string[];
declare const LOCAL_API_URL = "https://api.lclclerk.com";
declare const STAGING_API_URL = "https://api.clerkstage.dev";
declare const PROD_API_URL = "https://api.clerk.com";
/**
 * Returns the URL for a static image
 * using the new img.clerk.com service
 */
declare function iconImageUrl(id: string, format?: 'svg' | 'jpeg'): string;
export { CURRENT_DEV_INSTANCE_SUFFIXES, DEV_OR_STAGING_SUFFIXES, LEGACY_DEV_INSTANCE_SUFFIXES, LOCAL_API_URL, LOCAL_ENV_SUFFIXES, PROD_API_URL, STAGING_API_URL, STAGING_ENV_SUFFIXES, iconImageUrl };