Interface PlainInterface

interface PlainInterface {
    abstract: boolean;
    declared: boolean;
    name: string;
    properties: PlainProperty[];
    subTypes: Set<string>;
    superTypes: Set<string>;
}

Properties

abstract: boolean
declared: boolean
name: string
properties: PlainProperty[]
subTypes: Set<string>
superTypes: Set<string>