23 lines
392 B
23 lines
392 B
export const auditStatus: ({ |
|
val: number; |
|
text: string; |
|
color?: undefined; |
|
} | { |
|
val: number; |
|
text: string; |
|
color: any; |
|
})[]; |
|
export const riskGradeStatus: { |
|
val: number; |
|
text: string; |
|
color: any; |
|
}[]; |
|
export const auditStatusList: ({ |
|
val: number; |
|
text: string; |
|
color?: undefined; |
|
} | { |
|
val: number; |
|
text: string; |
|
color: any; |
|
})[];
|
|
|