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

    Provider interface for inline code completions. Implementations fetch completion suggestions from various sources (LLMs, static analysis, etc.).

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

    Type Parameters

    • T = any

      Type of completion items, defaults to any

    Implemented by

    Index

    Properties

    Methods

    Properties

    name: string

    Human-readable name of the completion provider

    schema?: any

    Configuration schema for provider settings

    Methods