UNPKG

524 BTypeScriptView Raw
1/**
2 * Copyright (c) Facebook, Inc. and its affiliates.
3 *
4 * This source code is licensed under the MIT license found in the
5 * LICENSE file in the root directory of this source tree.
6 *
7 * @format
8 */
9import * as React from 'react';
10interface State {
11 connectionInfo: string;
12}
13export default class ConnectionInfoCurrent extends React.Component<{}, State> {
14 state: {
15 connectionInfo: string;
16 };
17 componentDidMount(): void;
18 _fetchState: () => Promise<void>;
19 render(): JSX.Element;
20}
21export {};