UNPKG

@tomino/dynamic-form-semantic-ui

Version:

Semantic UI form renderer based on dynamic form generation

16 lines (15 loc) 474 B
import * as React from 'react'; import { FormComponentProps, FormComponent } from '@tomino/dynamic-form'; export declare type ApolloProps = { server: string; auth: string; tokenName: string; batchRequests: boolean; disable: boolean; authorised?: boolean; user?: string; roles?: string; id?: string; }; export declare const ApolloProvider: React.FC<FormComponentProps<ApolloProps>>; export declare const ApolloProviderView: FormComponent;