Files
mayfly-go/frontend/src/components/progress-notify/progress-notify.ts
2024-10-31 17:24:56 +08:00

13 lines
246 B
TypeScript

export const buildProgressProps = (): any => {
return {
progress: {
title: {
type: String,
},
executedStatements: {
type: Number,
},
},
};
};