File size: 353 Bytes
5d14125 | 1 2 3 4 5 6 7 8 9 10 | /**
* Get the correct API url based on the publishable key.
*
* @param publishableKey - The publishable key to parse.
* @returns One of Clerk's API URLs.
*/
declare const apiUrlFromPublishableKey: (publishableKey: string) => "https://api.clerk.com" | "https://api.lclclerk.com" | "https://api.clerkstage.dev";
export { apiUrlFromPublishableKey };
|