16 lines
253 B
TypeScript
16 lines
253 B
TypeScript
interface DataOption {
|
|
id: string;
|
|
name: string;
|
|
}
|
|
interface investigatefactsDataRowType {
|
|
subject: string;
|
|
interrogated: string;
|
|
fault: string;
|
|
status: string;
|
|
active: string;
|
|
}
|
|
|
|
export type {
|
|
DataOption,
|
|
investigatefactsDataRowType
|
|
};
|