1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| export interface QuestionOption {
| title: string;
| detail: Detail[];
| type: string;
| name: string;
| }
|
| interface Detail {
| value: string;
| name?: string;
| className: string;
| }
|
| export interface FastQueryParams {
| gender : string,
| communicationStyles: string[],
| avgScore : number,
| status : string
| }
|
| export interface Selected {
| option: string;
| value: any;
| }
|
|