12 lines
271 B
TypeScript
12 lines
271 B
TypeScript
|
|
// @generated
|
||
|
|
// This file is automatically generated by Kanel. Do not modify manually.
|
||
|
|
|
||
|
|
/** Represents the enum public.GenericStatusEnum */
|
||
|
|
enum GenericStatusEnum {
|
||
|
|
pending = 'pending',
|
||
|
|
success = 'success',
|
||
|
|
failed = 'failed',
|
||
|
|
};
|
||
|
|
|
||
|
|
export default GenericStatusEnum;
|