interface FunctionTypeParam {
    end?: null | number;
    extra?: Record<string, unknown>;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    name?: null | Identifier;
    optional?: null | boolean;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "FunctionTypeParam";
    typeAnnotation: FlowType;
}

Hierarchy (view full)

Properties

end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
name?: null | Identifier
optional?: null | boolean
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "FunctionTypeParam"
typeAnnotation: FlowType