|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 13 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
362 bytes
|
| Line | |
|---|
| 1 | import Promise = require('./index');
|
|---|
| 2 |
|
|---|
| 3 | declare function register (module?: string, options?: register.Options): register.Register;
|
|---|
| 4 |
|
|---|
| 5 | declare namespace register {
|
|---|
| 6 | export interface Register {
|
|---|
| 7 | Promise: typeof Promise;
|
|---|
| 8 | implementation: string;
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | export interface Options {
|
|---|
| 12 | Promise?: typeof Promise;
|
|---|
| 13 | global?: boolean
|
|---|
| 14 | }
|
|---|
| 15 | }
|
|---|
| 16 |
|
|---|
| 17 | export = register;
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.