UNPKG

@cainiaofe/cn-ui-layout

Version:

- 安装 cone-cli | [Cone-CLI 使用指引](https://alidocs.dingtalk.com/i/nodes/xdqZp24KneBJzvGM6XezJvyb7RA0Nr1E) - `tnpm i -g @alife/cone-cli@latest` - 安装依赖包 - `cone install` - 启动研发 - `cone start`

13 lines (12 loc) 260 B
export interface Obj { [key: string]: unknown; } export type Fn = (...args: unknown[]) => unknown; export type ServiceQuery = [ { params: { key?: string; } & Record<string, any>; } ]; export type ServiceResult = string;