veffect
Version:
powerful TypeScript validation library built on the robust foundation of Effect combining exceptional type safety, high performance, and developer experience. Taking inspiration from Effect's functional principles, VEffect delivers a balanced approach tha
19 lines • 416 B
TypeScript
/**
* @since 2.0.0
* @category models
*/
export interface LogSpan {
readonly label: string;
readonly startTime: number;
}
/**
* @since 2.0.0
* @category constructors
*/
export declare const make: (label: string, startTime: number) => LogSpan;
/**
* @since 2.0.0
* @category destructors
*/
export declare const render: (now: number) => (self: LogSpan) => string;
//# sourceMappingURL=LogSpan.d.ts.map