thenavisapp
Version:
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
17 lines (13 loc) • 445 B
text/typescript
import type {Server} from 'node:http';
// @ts-expect-error Fails to locate ../types/create-test-server/index.d.ts
import type {TestServer} from 'create-test-server';
export type ExtendedHttpServer = {
socketPath: string;
} & Server;
export type ExtendedTestServer = {
hostname: string;
sslHostname: string;
} & TestServer;
// https://github.com/sinonjs/fake-timers/pull/386
export type InstalledClock = any;
export type GlobalClock = any;