Utility TypeScript @ 2.0.0-beta
    Preparing search index...

    Interface JSON<Type>

    The shape used when converting this object to JSON.

    0.1.1

    interface JSON<Type extends TestType = TestType> {
        inspection: string;
        name: string;
        type: Return<Type>;
        properties?: { [key: string | number | symbol]: JSON_Child };
    }

    Type Parameters

    Index

    Properties

    inspection: string

    A string representation of the inspection. May have tabs and line breaks.

    name: string

    The provided name for the inspecte variable.

    type: Return<Type>

    The simple type name.

    properties?: { [key: string | number | symbol]: JSON_Child }

    If this is an object with properties or methods, they are included here.