KC's Workspace
    Preparing search index...
    interface Function {
        async: boolean;
        body: FunctionBody | null;
        declare?: boolean;
        end: number;
        expression: false;
        generator: boolean;
        id: BindingIdentifier | null;
        params: ParamPattern[];
        parent?: Node;
        range?: [number, number];
        returnType?: TSTypeAnnotation | null;
        start: number;
        type: FunctionType;
        typeParameters?: TSTypeParameterDeclaration | null;
    }

    Hierarchy (View Summary)

    Index

    Properties

    async: boolean
    body: FunctionBody | null
    declare?: boolean
    end: number
    expression: false
    generator: boolean
    params: ParamPattern[]
    parent?: Node
    range?: [number, number]
    returnType?: TSTypeAnnotation | null
    start: number
    typeParameters?: TSTypeParameterDeclaration | null