options
SectionLevelsβ
Defined in: printer-legacy/src/const/options.ts:22
Enumeration Membersβ
LEVELβ
LEVEL: "#";
Defined in: printer-legacy/src/const/options.ts:24
NONEβ
NONE: "";
Defined in: printer-legacy/src/const/options.ts:23
TypeHierarchyβ
Defined in: printer-legacy/src/const/options.ts:16
Enumeration Membersβ
APIβ
API: "api";
Defined in: printer-legacy/src/const/options.ts:17
ENTITYβ
ENTITY: "entity";
Defined in: printer-legacy/src/const/options.ts:18
FLATβ
FLAT: "flat";
Defined in: printer-legacy/src/const/options.ts:19
DEFAULT_OPTIONSβ
const DEFAULT_OPTIONS: Required<
Omit<
PrintTypeOptions,
| "afterDiffCheckHook"
| "afterGenerateIndexMetafileHook"
| "afterRenderHomepageHook"
| "afterRenderRootTypesHook"
| "afterRenderTypeEntitiesHook"
| "afterSchemaLoadHook"
| "beforeDiffCheckHook"
| "beforeGenerateIndexMetafileHook"
| "beforeRenderHomepageHook"
| "beforeRenderRootTypesHook"
| "beforeRenderTypeEntitiesHook"
| "beforeSchemaLoadHook"
| "collapsible"
| "exampleSection"
| "formatCategoryFolderName"
| "groups"
| "level"
| "meta"
| "onlyDocDirectives"
| "parentType"
| "schema"
| "skipDocDirectives"
>
> &
object;
Defined in: printer-legacy/src/const/options.ts:54
Clean runtime options passed through the printer.
Deprecated section toggles are excluded and handled via backward-compat paths.
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_DEPRECATED_OPTIONSβ
const PRINT_TYPE_DEFAULT_DEPRECATED_OPTIONS: object;
Defined in: printer-legacy/src/const/options.ts:27
Type Declarationβ
codeSectionβ
codeSection: true;
exampleSectionβ
exampleSection: false;
relatedTypeSectionβ
relatedTypeSection: true;
PRINT_TYPE_DEFAULT_OPTIONSβ
const PRINT_TYPE_DEFAULT_OPTIONS: Required<
Omit<PrinterConfigPrintTypeOptions, "exampleSection">
> &
object;
Defined in: printer-legacy/src/const/options.ts:36
Type Declarationβ
exampleSectionβ
exampleSection: PrintTypeOptions["exampleSection"];