This commit is contained in:
syuilo
2023-02-13 15:50:22 +09:00
parent 30f600e03e
commit 1b21bad202
33 changed files with 146 additions and 146 deletions

View File

@@ -215,12 +215,12 @@ export class User {
}
}
export interface ILocalUser extends User {
export type LocalUser = User & {
host: null;
uri: null;
}
export interface IRemoteUser extends User {
export type RemoteUser = User & {
host: string;
uri: string;
}