add directive types

This commit is contained in:
Febbraro 2019-11-21 13:50:56 -05:00
parent f8ffa5dfb2
commit 448e6abb92

View File

@ -24,6 +24,15 @@ export interface Component {
rawdescription: string; rawdescription: string;
} }
export interface Directive {
name: string;
propertiesClass: Property[];
inputsClass: Property[];
outputsClass: Property[];
methodsClass: Method[];
rawdescription: string;
}
export interface Argument { export interface Argument {
name: string; name: string;
type: string; type: string;
@ -35,5 +44,6 @@ export interface Decorator {
} }
export interface CompodocJson { export interface CompodocJson {
directives: Directive[];
components: Component[]; components: Component[];
} }