Interface ImplementationMiddleware

interface ImplementationMiddleware {
    provideImplementation?: (
        this: void,
        document: TextDocument,
        position: Position,
        token: CancellationToken,
        next: ProvideImplementationSignature,
    ) => ProviderResult<Definition | LocationLink[]>;
}

Properties

provideImplementation?: (
    this: void,
    document: TextDocument,
    position: Position,
    token: CancellationToken,
    next: ProvideImplementationSignature,
) => ProviderResult<Definition | LocationLink[]>