export declare type WorkspaceType = { /** Workspace id */ id: number; /** 租户id */ tenant_id: number; /** Workspace名称 */ name: string; /** Workspace首字母 */ letter: string; /** 图标 */ icon: string; /** 描述 */ description: string; /** 创建时间 */ created_at: string; /** 更新时间 */ updated_at: string; /** 当前workspace下的base */ base?: BaseType[]; /** base count数量 */ base_count: number; }; export declare type BaseType = { /** base id */ id: number; /** 租户 id */ tenant_id: number; /** workspace id */ workspace_id: number; /** 名称 */ name: string; /** 图标 */ icon: string; /** 颜色 */ color: string; /** 描述 */ description: string; /** 创建时间 */ updated_at: string; /** 更新时间 */ created_at: string; };