1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| export interface QuestionOption {
| title : string;
| detail: Detail[];
| type : string;
| name : string;
| }
|
| interface Detail {
| value : string;
| name? : string;
| className: string;
| subTitle?: string
| }
|
| export interface FastQueryParams {
| gender : string,
| communicationStyles: string[],
| avgScore : number,
| status : string,
| /** "資深"帶"SENIOR"、"年輕"帶"YOUNG"、"不限"帶"UNLIMITED" */
| seniority : string
| }
|
| export interface Selected {
| option: string;
| value : any;
| }
|
|