Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/2013b25e37ccec309e896a716a4659e29448c09ff7d0b4f9df0d467a60452e5305d659335584de38a641e182f982288cd4ef0fd67d8be40f4cef0824c4bc15
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

16 lines
508 B
Text

/// <reference types="node" />
import { IInternalHash } from '../base/index';
export interface INativeReader {
free?(): void;
fill(target: Uint8Array): void;
set_position(position: Buffer): void;
}
export interface INativeHash extends IInternalHash<INativeReader> {
new (hashKey?: Buffer, context?: string): INativeHash;
}
export interface INativeModule {
Hasher: INativeHash;
hash(input: Buffer, length: number): Buffer;
}
declare const native: INativeModule;
export default native;