@redocly/graphql-docs
Version:
Redocly GraphQL docs
8 lines (7 loc) • 340 B
TypeScript
import type { GraphQLConfigWithLayout } from './types.js';
export type PaginationType = 'none' | 'section' | 'item';
type WithRequired<T, K extends keyof T> = T & {
[P in K]-?: T[P];
};
export type GraphQLDocsSettings = WithRequired<GraphQLConfigWithLayout, 'jsonSamplesDepth' | 'samplesMaxInlineArgs' | 'fieldExpandLevel'>;
export {};