interface ObjectTypeIndexer {
    end?: null | number;
    extra?: Record<string, unknown>;
    id?: null | Identifier;
    innerComments?: null | Comment[];
    key: FlowType;
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    start?: null | number;
    static: boolean;
    trailingComments?: null | Comment[];
    type: "ObjectTypeIndexer";
    value: FlowType;
    variance?: null | Variance;
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
id?: null | Identifier
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
static: boolean
trailingComments?: null | Comment[]
type: "ObjectTypeIndexer"
value: FlowType
variance?: null | Variance