Rocky_Mountain_Vending/.pnpm-store/v10/files/91/dc55c63670b3c8d7e2e376b08bdf7cceb66e165b3ed8805445dcedf11470888e5aa24ec3135c7651475c7a9dd6f91ad07e583d6851b69f6c22df5e254e91dd
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

19 lines
574 B
Text

export type Micro = number & {
_tag: 'MicroSeconds';
};
export declare function Micro(value: number): Micro;
export type Milli = number & {
_tag: 'MilliSeconds';
};
export declare function Milli(value: number): Milli;
export type Seconds = number & {
_tag: 'Seconds';
};
export declare function Seconds(value: number): Seconds;
export interface TraceWindow<TimeFormat extends Micro | Milli> {
min: TimeFormat;
max: TimeFormat;
range: TimeFormat;
}
export type TraceWindowMicro = TraceWindow<Micro>;
export type TraceWindowMilli = TraceWindow<Milli>;