# RecordData
RecordData 采用Map结构，key为string | number类型， value可以为任意类型。
```js
export interface RecordData {
    [key: string | number]: any;
}
```