UNPKG

rtech-struct

Version:

Rtech Platform Superstruct Entity

16 lines (13 loc) 248 B
type State = { index: number, status: 'SUCCESS' | 'FAIL', error?: string }; type UploadJobState = { id: string, status: 'PENDING' | 'DONE', states: State[], created_at: string, updated_at: string }; export default UploadJobState;