第一段階開発完了
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user