Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

AutoCompleteExtractorResult

interface AutoCompleteExtractorResult {
extracted: string;
resolveReplacement: (suggestion: string) => Replacement;
transformSuggestions?: (suggestions: string[]) => string[];
}

§Properties

§
extracted: string
[src]

The extracted string

§
resolveReplacement: (suggestion: string) => Replacement
[src]

The function to convert the selected suggestion back

§
transformSuggestions?: (suggestions: string[]) => string[]
[src]

The function to format suggestions