Interface GoOptions

Hierarchy

Properties

constraints: Constraints<GoOptions>
defaultPreset?: Partial<{
    enum: EnumPresetType<GoOptions>;
    struct: StructPresetType<GoOptions>;
}>

Type declaration

dependencyManager?: AbstractDependencyManager | (() => AbstractDependencyManager)

This dependency manager type serves two functions.

  1. It can be used to provide a factory for generate functions
  2. It can be used to provide a single instance of a dependency manager, to add all dependencies together

This depends on context and where it's used.

Type declaration

    • (): AbstractDependencyManager
    • Returns AbstractDependencyManager

indentation?: {
    size: number;
    type: IndentationTypes;
}

Type declaration

presets?: Presets<Partial<{
    enum: EnumPresetType<GoOptions>;
    struct: StructPresetType<GoOptions>;
}>>
processorOptions?: ProcessorOptions
typeMapping: TypeMapping<GoOptions, GoDependencyManager>

Generated using TypeDoc