型修正

This commit is contained in:
ろむねこ 2024-06-25 15:29:16 +09:00
parent 4a216ae9b2
commit 0fd6be5d9e
Signed by: Fujimatsu
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,9 +1,9 @@
// Parent系インタフェース用
interface ParentResponse {
id: String,
email: String,
name: String,
id: string,
email: string,
name: string,
}
export { ParentResponse }