@ng-doc/app
Version:
<!-- PROJECT LOGO --> <br /> <div align="center"> <a href="https://github.com/ng-doc/ng-doc"> <img src="https://ng-doc.com/assets/images/ng-doc.svg?raw=true" alt="Logo" height="150px"> </a>
16 lines (15 loc) • 418 B
TypeScript
/**
* Options for the type control provider
*/
export interface NgDocTypeControlProviderOptions {
/**
* Allows to hide the label of the type control,
* if the label is not needed or if you want to use a custom label
*/
hideLabel?: boolean;
/**
* You can use this to change the order of the type control
* NgDoc's controls start at 5 and go up to 10
*/
order?: number;
}