UNPKG

@bengo.co/typescript-web-starter

Version:

A simple website project written in TypeScript. Use this as a starting point for your project.

10 lines (9 loc) 283 B
declare module "killable" { import { Server } from "http"; type KillableServerType = Server & { kill: (cb: Function) => void }; function killable(server: Server): KillableServerType; namespace killable { export type KillableServer = KillableServerType } export = killable; }