Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
14 lines
535 B
Text
14 lines
535 B
Text
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>): (...args: any[]) => Promise<unknown>;
|