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

15 lines
253 B
TypeScript
Raw Normal View History

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