UNPKG

@redocly/graphql-docs

Version:

Redocly GraphQL docs

16 lines (15 loc) 476 B
import type { PropsWithChildren } 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: import("react").NamedExoticComponent<PropsWithChildren<ViewNestedProps>>; export {};