UNPKG

reduct-js

Version:

ReductStore Client SDK for Javascript/NodeJS/Typescript

13 lines (12 loc) 306 B
/** * Resource status during deletion */ export declare enum Status { READY = "READY", DELETING = "DELETING" } /** * Parse status string and return a valid Status enum value. * Defaults to READY for undefined or invalid values. */ export declare function parseStatus(status?: string): Status;