NgDoc

What is NgDoc? Installation SSR Configuration NEW OPTIONS Migrations
Pages and categories UPDATED Blockquotes NEW STYLES Images and embeds NEW Code blocks Mermaid diagrams NEW Nunjucks Demo and Demo Pane Playground Keywords
Auto generation Documenting declarations Rendering API NEW
Page Processors Page Skeleton Layout Search Themes UPDATED Icons
Performance Ignoring file lines
API References Develop
@ng-doc/app / TypeAlias

NgDocFormPartialValue

Generic types:T

No documentation has been provided.

Presentation

type NgDocFormPartialValue =
  T extends FormArray<infer FA>
    ? Array<NgDocFormPartialValue<FA>>
    : T extends FormGroup<infer FG>
      ? Partial<{ [K in keyof FG]: NgDocFormPartialValue<FG[K]> }>
      : T extends FormControl<infer FC>
        ? FC
        : never;
  • Presentation
MIT © 2023 Aleksandr Skoropad