options
SectionLevelsβ
Defined in: printer-legacy/src/const/options.ts:31
Enumeration Membersβ
LEVELβ
LEVEL: "#";
Defined in: printer-legacy/src/const/options.ts:37
NONEβ
NONE: "";
Defined in: printer-legacy/src/const/options.ts:36
Deprecatedβ
Use SectionLevels.LEVEL instead.
TypeHierarchyβ
Defined in: printer-legacy/src/const/options.ts:24
Enumeration Membersβ
APIβ
API: "api";
Defined in: printer-legacy/src/const/options.ts:25
ENTITYβ
ENTITY: "entity";
Defined in: printer-legacy/src/const/options.ts:27
FLATβ
FLAT: "flat";
Defined in: printer-legacy/src/const/options.ts:28
DEFAULT_OPTIONSβ
const DEFAULT_OPTIONS: Required<
Omit<
PrintTypeOptions,
| "collapsible"
| "exampleSection"
| "formatCategoryFolderName"
| "groups"
| "level"
| "meta"
| "onlyDocDirectives"
| "parentType"
| "schema"
| "skipDocDirectives"
>
> &
object;
Defined in: printer-legacy/src/const/options.ts:56
Clean runtime options passed through the printer.
Type Declarationβ
collapsibleβ
collapsible: Maybe<CollapsibleOption>;
exampleSectionβ
exampleSection: PrintTypeOptions["exampleSection"];
groupsβ
groups: Maybe<SchemaEntitiesGroupMap>;
levelβ
level: Maybe<SectionLevelValue>;
onlyDocDirectivesβ
onlyDocDirectives: GraphQLDirective[];
parentTypeβ
parentType: Maybe<string>;
schemaβ
schema: Maybe<GraphQLSchema>;
skipDocDirectivesβ
skipDocDirectives: GraphQLDirective[];
PRINT_TYPE_DEFAULT_OPTIONSβ
const PRINT_TYPE_DEFAULT_OPTIONS: Required<
Omit<PrinterConfigPrintTypeOptions, "exampleSection">
> &
object;
Defined in: printer-legacy/src/const/options.ts:40
Type Declarationβ
exampleSectionβ
exampleSection: PrintTypeOptions["exampleSection"];