UNPKG

slightning-coco-widget

Version:

SLIGHTNING 的 CoCo 控件框架。

13 lines (12 loc) 219 B
import { ViewType } from '../enums'; /** * View interface */ export interface IView { id: string; name: string; type: ViewType; } export interface IGetViewsListRespData { views: IView[]; }