1 |
|
2 | import * as PropTypes from 'prop-types';
|
3 | import { OperationVariables } from '../../core';
|
4 | import { SubscriptionComponentOptions } from './types';
|
5 | export declare function Subscription<TData = any, TVariables extends OperationVariables = OperationVariables>(props: SubscriptionComponentOptions<TData, TVariables>): JSX.Element | null;
|
6 | export declare namespace Subscription {
|
7 | var propTypes: PropTypes.InferProps<SubscriptionComponentOptions<any, any>>;
|
8 | }
|
9 | export interface Subscription<TData, TVariables extends OperationVariables> {
|
10 | propTypes: PropTypes.InferProps<SubscriptionComponentOptions<TData, TVariables>>;
|
11 | }
|
12 |
|
\ | No newline at end of file |