Make site and domain optional and get rid of "<unknown>" values.

This commit is contained in:
baldo 2022-07-28 12:24:07 +02:00
parent 72543b95ee
commit 2d83326b78
2 changed files with 14 additions and 12 deletions
server/types

View file

@ -23,8 +23,8 @@ export * from "./logger";
export * from "./shared";
export type NodeStateData = {
site: Site,
domain: Domain,
site?: Site,
domain?: Domain,
state: OnlineState,
}