Changing diagnostic functions arguments.

This commit is contained in:
John Livingston
2021-04-12 20:15:44 +02:00
parent d1ede8d3ee
commit 79bdaceb48
8 changed files with 16 additions and 21 deletions

View File

@ -1,6 +1,6 @@
import { newResult, TestResult } from './utils'
export async function diagBackend (test: string, _settingsManager: PluginSettingsManager): Promise<TestResult> {
export async function diagBackend (test: string, _options: RegisterServerOptions): Promise<TestResult> {
const result = newResult(test)
result.label = 'Backend connection'
result.ok = true