KC's Workspace
    Preparing search index...
    interface Class {
        abstract?: boolean;
        body: ClassBody;
        declare?: boolean;
        decorators: Decorator[];
        end: number;
        id: BindingIdentifier | null;
        implements?: TSClassImplements[];
        parent?: Node;
        range?: [number, number];
        start: number;
        superClass: Expression | null;
        superTypeArguments?: TSTypeParameterInstantiation | null;
        type: ClassType;
        typeParameters?: TSTypeParameterDeclaration | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    abstract?: boolean
    body: ClassBody
    declare?: boolean
    decorators: Decorator[]
    end: number
    implements?: TSClassImplements[]
    parent?: Node
    range?: [number, number]
    start: number
    superClass: Expression | null
    superTypeArguments?: TSTypeParameterInstantiation | null
    type: ClassType
    typeParameters?: TSTypeParameterDeclaration | null