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>
16 lines
508 B
Text
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;
|