Blame view

src/api/demo/model/optionsModel.ts 316 Bytes
1
2
3
4
5
6
7
import { BasicFetchResult } from '/@/api/model/baseModel';

export interface DemoOptionsItem {
  label: string;
  value: string;
}
8
9
10
11
export interface selectParams {
  id: number | string;
}
12
13
14
/**
 * @description: Request list return value
 */
15
export type DemoOptionsGetResultModel = BasicFetchResult<DemoOptionsItem>;