import type { AsyncLocalStorage } from 'async_hooks';
import type { IncrementalCache } from '../lib/incremental-cache';
import type { FetchMetrics } from '../base-http';
import type { DeepReadonly } from '../../shared/lib/deep-readonly';
import type { AppSegmentConfig } from '../../build/segment-config/app/app-segment-config';
import type { AfterContext } from '../after/after-context';
import type { CacheLife } from '../use-cache/cache-life';
import { workAsyncStorageInstance } from './work-async-storage-instance';
import type { LazyResult } from '../lib/lazy-result';
export interface WorkStore {
readonly isStaticGeneration: boolean;
/**
* The page that is being rendered. This relates to the path to the page file.
*/
readonly page: string;
/**
* The route that is being rendered. This is the page property without the
* trailing `/page` or `/route` suffix.
*/
readonly route: string;
readonly incrementalCache?: IncrementalCache;
readonly cacheLifeProfiles?: {
[profile: string]: CacheLife;
};
readonly isOnDemandRevalidate?: boolean;
readonly isBuildTimePrerendering?: boolean;
/**
* This is true when:
* - source maps are generated
* - source maps are applied
* - minification is disabled
*/
readonly hasReadableErrorStacks?: boolean;
readonly isRevalidate?: boolean;
forceDynamic?: boolean;
fetchCache?: AppSegmentConfig['fetchCache'];
forceStatic?: boolean;
dynamicShouldError?: boolean;
pendingRevalidates?: Record