mirror of
https://github.com/usual2970/certimate.git
synced 2025-06-18 10:20:02 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export type Statistics = {
|
|
certificateTotal: number;
|
|
certificateExpired: number;
|
|
certificateExpireSoon: number;
|
|
workflowTotal: number;
|
|
workflowEnabled: number;
|
|
workflowDisabled: number;
|
|
};
|