@aziontech/opennextjs-azion
Version:
Azion builder for Next.js apps
12 lines (11 loc) • 519 B
TypeScript
/**
* This code was originally copied and modified from the @opennextjs/cloudflare repository.
* Significant changes have been made to adapt it for use with Azion.
*/
import { CacheEntryType, CacheValue } from "@opennextjs/aws/types/overrides.js";
export type IncrementalCacheEntry<CacheType extends CacheEntryType> = {
value: CacheValue<CacheType>;
lastModified: number;
};
export declare const debugCache: (name: string, ...args: unknown[]) => void;
export declare const FALLBACK_BUILD_ID = "no-build-id";