@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
TypeScript
export interface SchemaJSON {
title: string;
description: string;
properties: {
[]: PropertyConfiguration;
};
required: string[];
}
export interface PropertyConfiguration {
type: string;
description: string;
alias: string[];
oneOf?: PropertyConfiguration[];
items: {
type: string;
};
default: boolean | string | number;
enum: string[];
}