10 lines
207 B
TypeScript
10 lines
207 B
TypeScript
interface RequestItemsObject {
|
|
certificateType: string;
|
|
issuer: string;
|
|
certificateNo: string;
|
|
issueDate: Date;
|
|
expireDate: Date | null;
|
|
profileId: string;
|
|
}
|
|
|
|
export type { RequestItemsObject };
|