@openstream/client
Version:
Openstream Radio Server Client
10 lines • 336 B
TypeScript
import type { DateTime } from "../DateTime.js";
import type { UserAccountRelationKind } from "./UserAccountRelationKind.js";
export type UserAccountRelation = {
_id: string;
user_id: string;
account_id: string;
kind: UserAccountRelationKind;
created_at: DateTime;
};
//# sourceMappingURL=UserAccountRelation.d.ts.map