UNPKG

@tdb/web

Version:

Common condiguration for serving a web-site and testing web-based UI components.

18 lines (13 loc) 362 B
import Promise = require('./index'); declare function register (module?: string, options?: register.Options): register.Register; declare namespace register { export interface Register { Promise: typeof Promise; implementation: string; } export interface Options { Promise?: typeof Promise; global?: boolean } } export = register;