11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
interface RequestItemsObject {
|
|
profileId?: string;
|
|
detail: string;
|
|
issueDate: Date | null;
|
|
issuer: string;
|
|
refCommandDate: Date | null;
|
|
refCommandNo: string;
|
|
isDate: boolean | string;
|
|
}
|
|
|
|
export type { RequestItemsObject };
|