react-code-dataset / next.js /packages /next /src /server /app-render /action-async-storage.external.ts
Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import type { AsyncLocalStorage } from 'async_hooks'
// Share the instance module in the next-shared layer
import { actionAsyncStorageInstance } from './action-async-storage-instance' with { 'turbopack-transition': 'next-shared' }
export interface ActionStore {
readonly isAction?: boolean
readonly isAppRoute?: boolean
}
export type ActionAsyncStorage = AsyncLocalStorage<ActionStore>
export { actionAsyncStorageInstance as actionAsyncStorage }