第一段階開発完了

This commit is contained in:
2023-07-25 01:46:17 +09:00
parent 97e22fe7c3
commit c83a9d73ab
18 changed files with 483 additions and 48 deletions

View File

@@ -1,3 +1,4 @@
export interface Todo {
id: number;
content: string;
@@ -6,3 +7,29 @@ export interface Todo {
export interface Meta {
totalCount: number;
}
/**
* Kintone app のID情報
*/
export interface AppSeed{
app:string;
revision?:string;
}
export interface User{
code:string;
name:string;
}
export interface AppInfo {
appId:string;
code?:string;
name:string;
description?:string;
createdAt?:Date;
modifiedAt?:Date;
spaceId?:string;
threadId?:string;
creator?:User;
modifier?:User;
}