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>
19 lines
574 B
Text
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>;
|