//#region src/ports/clock.d.ts interface ClockPort { now(): Date; } declare const systemClock: ClockPort; declare function fixedClock(date: Date): ClockPort; //#endregion export { fixedClock as n, systemClock as r, ClockPort as t };