Your IP : 216.73.216.91


Current Path : /var/node/inatote/Inatote-Backend/node_modules/any-promise/
Upload File :
Current File : /var/node/inatote/Inatote-Backend/node_modules/any-promise/register.d.ts

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;