Rocky_Mountain_Vending/.pnpm-store/v10/files/77/065dd71d1498b2ef725ece02d24e17a7470ebeccc080ce0de90baa8159d80da0c3d57b0661debb8c014b7910259031f917ba3a069582645291f0dd17459d1f
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
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>
2026-02-12 16:22:15 -07:00

28 lines
1.5 KiB
Text

import type { ActionManifest } from '../../build/webpack/plugins/flight-client-entry-plugin';
import type { ClientReferenceManifest, ClientReferenceManifestForRsc } from '../../build/webpack/plugins/flight-manifest-plugin';
import type { DeepReadonly } from '../../shared/lib/deep-readonly';
export declare function arrayBufferToString(buffer: ArrayBuffer | Uint8Array<ArrayBufferLike>): string;
export declare function stringToUint8Array(binary: string): Uint8Array<ArrayBuffer>;
export declare function encrypt(key: CryptoKey, iv: Uint8Array<ArrayBuffer>, data: Uint8Array<ArrayBuffer>): Promise<ArrayBuffer>;
export declare function decrypt(key: CryptoKey, iv: Uint8Array<ArrayBuffer>, data: Uint8Array<ArrayBuffer>): Promise<ArrayBuffer>;
export declare function setReferenceManifestsSingleton({ page, clientReferenceManifest, serverActionsManifest, serverModuleMap, }: {
page: string;
clientReferenceManifest: DeepReadonly<ClientReferenceManifest>;
serverActionsManifest: DeepReadonly<ActionManifest>;
serverModuleMap: {
[id: string]: {
id: string;
chunks: string[];
name: string;
};
};
}): void;
export declare function getServerModuleMap(): {
[id: string]: {
id: string;
chunks: string[];
name: string;
};
};
export declare function getClientReferenceManifestForRsc(): DeepReadonly<ClientReferenceManifestForRsc>;
export declare function getActionEncryptionKey(): Promise<CryptoKey>;