Interface NewSymbolNamesProvider

interface NewSymbolNamesProvider {
    supportsAutomaticNewSymbolNamesTriggerKind?: Promise<undefined | boolean>;
    provideNewSymbolNames(model, range, triggerKind, token): ProviderResult<NewSymbolName[]>;
}

Properties

supportsAutomaticNewSymbolNamesTriggerKind?: Promise<undefined | boolean>

Methods