Interface BaseObject

Contains base properties needec to perform basic type tests on objects with unknown types.

interface BaseObject {
    length?: number;
    prototype: BaseObject;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

Properties

length?: number
prototype: BaseObject