UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

16 lines (15 loc) 451 B
import React from 'react'; import type { GraphQLArgument } from 'graphql'; interface ViewNestedProps { expanded: boolean; expandText: string; collapseText: string; deepLink?: string; level?: number; openByDefault?: boolean; operationPointer?: string; args?: GraphQLArgument[]; onClick?: () => void; } export declare const ViewNested: React.NamedExoticComponent<React.PropsWithChildren<ViewNestedProps>>; export {};