DefinitelyTyped/types/default-gateway/default-gateway-tests.ts
2018-12-17 20:10:44 +01:00

12 lines
303 B
TypeScript

import * as defaultGateway from 'default-gateway';
defaultGateway.v4().then(result => {
result; // $ExpectType Gateway
});
defaultGateway.v6().then(result => {
result; // $ExpectType Gateway
});
defaultGateway.v4.sync(); // $ExpectType Gateway
defaultGateway.v6.sync(); // $ExpectType Gateway