sesaparcours
    Preparing search index...
    interface Completer {
        id?: string;
        identifierRegexps?: RegExp[];
        getCompletions(
            editor: Editor,
            session: EditSession,
            position: Point,
            prefix: string,
            callback: CompleterCallback,
        ): void;
        getDocTooltip?(item: Completion): string | Completion | undefined;
    }
    Index

    Properties

    id?: string
    identifierRegexps?: RegExp[]

    Methods

    • Parameters

      Returns string | Completion | undefined