index.d.ts
351 Bytes
type Params = {
[key: string]: string
}
type ArrayParams = Params[]
export type historyInputValue = { id: string; inputValue: string }
//dataset数据源数据类型不确定,String Array Object Number
export type datasetType = string | number | Params | ArrayParams
export type saveHistoryInputValueListType = historyInputValue[]