UNPKG

@clerk/nextjs

Version:

Clerk SDK for NextJS

1 lines 1.14 kB
{"version":3,"sources":["../../../src/server/nextFetcher.ts"],"sourcesContent":["type Fetcher = typeof globalThis.fetch;\n\n/**\n * Based on nextjs internal implementation https://github.com/vercel/next.js/blob/6185444e0a944a82e7719ac37dad8becfed86acd/packages/next/src/server/lib/patch-fetch.ts#L23\n */\ntype NextFetcher = Fetcher & {\n readonly __nextPatched: true;\n readonly __nextGetStaticStore: () => { getStore: () => StaticGenerationAsyncStorage | undefined };\n};\n\n/**\n * Full type can be found https://github.com/vercel/next.js/blob/6185444e0a944a82e7719ac37dad8becfed86acd/packages/next/src/client/components/static-generation-async-storage.external.ts#L4\n */\ninterface StaticGenerationAsyncStorage {\n /**\n * Available for Next 14\n */\n readonly pagePath?: string;\n /**\n * Available for Next 15\n */\n readonly page?: string;\n}\n\nfunction isNextFetcher(fetch: Fetcher | NextFetcher): fetch is NextFetcher {\n return '__nextPatched' in fetch && fetch.__nextPatched === true;\n}\n\nexport { isNextFetcher };\n"],"mappings":";AAwBA,SAAS,cAAc,OAAoD;AACzE,SAAO,mBAAmB,SAAS,MAAM,kBAAkB;AAC7D;","names":[]}