Files
mayfly-go/mayfly_go_web/src/components/progress-notify/progress-notify.ts
2023-10-18 15:41:57 +08:00

13 lines
246 B
TypeScript

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