KC's Workspace
    Preparing search index...
    interface Signature {
        declaration?: SignatureDeclaration | JSDocSignature;
        parameters: readonly Symbol[];
        thisParameter?: Symbol;
        typeParameters?: readonly TypeParameter[];
        getDeclaration(): SignatureDeclaration;
        getDocumentationComment(
            typeChecker: TypeChecker | undefined,
        ): SymbolDisplayPart[];
        getJsDocTags(): JSDocTagInfo[];
        getParameters(): Symbol[];
        getReturnType(): Type;
        getTypeParameterAtPosition(pos: number): Type;
        getTypeParameters(): TypeParameter[] | undefined;
    }
    Index

    Properties

    parameters: readonly Symbol[]
    thisParameter?: Symbol
    typeParameters?: readonly TypeParameter[]

    Methods

    • Returns Type

    • Parameters

      • pos: number

      Returns Type