Files
mayfly-go/mayfly_go_web/src/components/progress-notify/progress-notify.ts

13 lines
246 B
TypeScript
Raw Normal View History

2023-10-12 12:14:56 +08:00
export const buildProgressProps = (): any => {
return {
progress: {
title: {
2023-10-12 12:14:56 +08:00
type: String,
},
executedStatements: {
2023-10-12 12:14:56 +08:00
type: Number,
},
},
};
2023-10-12 12:14:56 +08:00
};