35 lines
475 B
TypeScript
35 lines
475 B
TypeScript
|
|
export interface Todo {
|
|
id: number;
|
|
content: string;
|
|
}
|
|
|
|
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;
|
|
}
|