README and Interfaces

Updated the IType interface and the README file that includes installation instructions and usage examples
This commit is contained in:
Bradyn Glines
2018-01-20 17:31:59 -07:00
parent 94a0da5aaa
commit 4159cd65fe
8 changed files with 133 additions and 12 deletions

View File

@ -1,3 +1,3 @@
export interface ISubType {
types: string[];
type: string;
}

View File

@ -1,3 +1,3 @@
export interface ISuperType {
types: string[];
type: string;
}

View File

@ -1,7 +1,3 @@
export interface IType {
type: string;
value: string;
resource(): string;
all(): IType[];
}