peertube-plugin-livechat/server/lib/diagnostic/utils.ts

32 lines
611 B
TypeScript
Raw Normal View History

type nextValue = 'backend' | 'debug' | 'webchat-video' | 'prosody' | 'external-auth-custom-oidc' | 'everything-ok'
2021-05-02 14:16:19 +00:00
interface MessageWithLevel {
level: 'info' | 'warning' | 'error'
message: string
help?: {
url: string
text: string
}
2021-05-02 14:16:19 +00:00
}
export interface TestResult {
label?: string
2021-05-02 14:16:19 +00:00
messages: Array<string | MessageWithLevel>
2021-04-14 14:14:56 +00:00
debug: Array<{
title: string
message: string
}>
next: nextValue | null
ok: boolean
test: string
}
export function newResult (test: string): TestResult {
return {
test: test,
ok: false,
messages: [],
2021-04-14 14:14:56 +00:00
debug: [],
next: null
}
}