FRE-651: CEO coordination notes for founder bio/headshot assets

This commit is contained in:
2026-04-26 07:41:45 -04:00
parent 3d5ff8650c
commit 5f4eb60a98
476 changed files with 67971 additions and 125 deletions

26
node_modules/@clerk/backend/dist/runtime.d.ts generated vendored Normal file
View File

@@ -0,0 +1,26 @@
/**
* This file exports APIs that vary across runtimes (i.e. Node & Browser - V8 isolates)
* as a singleton object.
*
* Runtime polyfills are written in VanillaJS for now to avoid TS complication. Moreover,
* due to this issue https://github.com/microsoft/TypeScript/issues/44848, there is not a good way
* to tell Typescript which conditional import to use during build type.
*
* The Runtime type definition ensures type safety for now.
* Runtime js modules are copied into dist folder with bash script.
*
* TODO: Support TS runtime modules
*/
type Runtime = {
crypto: Crypto;
fetch: typeof globalThis.fetch;
AbortController: typeof globalThis.AbortController;
Blob: typeof globalThis.Blob;
FormData: typeof globalThis.FormData;
Headers: typeof globalThis.Headers;
Request: typeof globalThis.Request;
Response: typeof globalThis.Response;
};
export declare const runtime: Runtime;
export {};
//# sourceMappingURL=runtime.d.ts.map