Newer
Older
mobile.raikyakun.app / node / src / types / index.ts
nutrition on 24 Jul 2024 336 bytes first commit
// ユーザ情報
export interface User {
	id:					string
	group:				string
	name:				string
	isStealth:			boolean
	sortVal:			number
	isDefaultResponder: boolean // 設定にのみ使用
}

export interface Call {
	callId:		string
	createdAt:	string
	dst:		User
	visitor:	string
	responder:	string | null | undefined
}