Datalayer VS Code Extension - v0.0.17
    Preparing search index...

    Provider interface for inline code completions (from jupyter-ui).

    interface IInlineCompletionProvider<T = any> {
        identifier?: string;
        name: string;
        schema?: any;
        fetch(request: any, context: any): Promise<IInlineCompletionList<T>>;
    }

    Type Parameters

    • T = any

    Implemented by

    Index

    Properties

    Methods

    Properties

    identifier?: string

    Unique identifier for the provider.

    name: string

    Human-readable name of the provider.

    schema?: any

    Configuration schema for provider settings.

    Methods