CR update to use type alias

This commit is contained in:
Febbraro 2019-11-26 14:56:04 -05:00
parent 73a02c522d
commit a10b2d18b2

View File

@ -15,15 +15,6 @@ export interface Property {
description?: string;
}
export interface Component {
name: string;
propertiesClass: Property[];
inputsClass: Property[];
outputsClass: Property[];
methodsClass: Method[];
rawdescription: string;
}
export interface Directive {
name: string;
propertiesClass: Property[];
@ -33,6 +24,8 @@ export interface Directive {
rawdescription: string;
}
export type Component = Directive;
export interface Argument {
name: string;
type: string;