interface TSIndexSignature {
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    parameters: Identifier[];
    range?: [number, number];
    readonly?: null | boolean;
    start?: null | number;
    static?: null | boolean;
    trailingComments?: null | Comment[];
    type: "TSIndexSignature";
    typeAnnotation?: null | TSTypeAnnotation;
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
parameters: Identifier[]
range?: [number, number]
readonly?: null | boolean
start?: null | number
static?: null | boolean
trailingComments?: null | Comment[]
type: "TSIndexSignature"
typeAnnotation?: null | TSTypeAnnotation