8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
|
const SliceReadStatus = {
|
||
|
Success: 'success',
|
||
|
StreamNotFound: 'streamNotFound',
|
||
|
StreamDeleted: 'streamDeleted'
|
||
|
};
|
||
|
|
||
|
module.exports = SliceReadStatus;
|