Files
vercel_dashboard_example/.pnpm-store/v11/files/01/08bdc86d08a8422455452494e8d41140e6555727f29cbb99232ab4df6c4107ff02243e69c079ef25ff6e666f1848a0ce177436ce71901adafb34b2c163578e
T
2026-05-12 14:53:15 +00:00

15 lines
536 B
Plaintext

import { type SearchParams } from '../request/search-params';
import type { Params } from '../request/params';
export interface UseCachePageProps {
params: Promise<Params>;
searchParams: Promise<SearchParams>;
$$isPage: true;
}
export type UseCacheLayoutProps = {
params: Promise<Params>;
$$isLayout: true;
} & {
[slot: string]: any;
};
export declare function cache(kind: string, id: string, boundArgsLength: number, originalFn: (...args: unknown[]) => Promise<unknown>, argsObj: IArguments): Promise<unknown>;