mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-25 09:06:34 +08:00
13 lines
252 B
TypeScript
13 lines
252 B
TypeScript
export const buildProgressProps = (): any => {
|
|
return {
|
|
progress: {
|
|
sqlFileName: {
|
|
type: String,
|
|
},
|
|
executedStatements: {
|
|
type: Number,
|
|
},
|
|
},
|
|
};
|
|
};
|