DefinitelyTyped/types/react-gateway/index.d.ts
Ferdy Budhidharma 6d2fc7181a feat(react-dependents): update to TS 2.8 (part 1 of 2) (#27743)
* feat(react-dependents): update to TS 2.8

* exclude react-dom

* fix version mismatches
2018-08-03 21:01:14 +01:00

22 lines
667 B
TypeScript

// Type definitions for react-gateway 2.8
// Project: https://github.com/cloudflare/react-gateway
// Definitions by: Jason Unger <https://github.com/jsonunger>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import Gateway = require('./Gateway');
import { GatewayProps } from './Gateway';
import GatewayDest = require('./GatewayDest');
import { GatewayDestProps } from './GatewayDest';
import GatewayProvider = require('./GatewayProvider');
import GatewayRegistry = require('./GatewayRegistry');
export {
Gateway,
GatewayProps,
GatewayDest,
GatewayDestProps,
GatewayProvider,
GatewayRegistry
};