You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
726 B
12 lines
726 B
|
2 months ago
|
import type { StaticGenerationAsyncStorage, StaticGenerationStore } from '../../client/components/static-generation-async-storage.external';
|
||
|
|
import type * as ServerHooks from '../../client/components/hooks-server-context';
|
||
|
|
export declare function validateRevalidate(revalidateVal: unknown, pathname: string): undefined | number | false;
|
||
|
|
export declare function validateTags(tags: any[], description: string): string[];
|
||
|
|
export declare function addImplicitTags(staticGenerationStore: StaticGenerationStore): string[];
|
||
|
|
interface PatchableModule {
|
||
|
|
serverHooks: typeof ServerHooks;
|
||
|
|
staticGenerationAsyncStorage: StaticGenerationAsyncStorage;
|
||
|
|
}
|
||
|
|
export declare function patchFetch(options: PatchableModule): void;
|
||
|
|
export {};
|