mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
667 B
TypeScript
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
|
|
};
|