UNPKG

@nx-dotnet/nxdoc

Version:

> This package is unstable! Documentation formatting could change in the future. See something that you think should be different? [Open an issue](https://github.com/nx-dotnet/nx-dotnet/issues) on github and help shape this plugin.

20 lines (19 loc) 417 B
export interface SchemaJSON { title: string; description: string; properties: { [key: string]: PropertyConfiguration; }; required: string[]; } export interface PropertyConfiguration { type: string; description: string; alias: string[]; oneOf?: PropertyConfiguration[]; items: { type: string; }; default: boolean | string | number; enum: string[]; }