UNPKG

reduct-js

Version:

ReductStore Client SDK for Javascript/NodeJS/Typescript

14 lines (13 loc) 452 B
/** * LifecycleType string literal type for TypeScript type checking. */ export type LifecycleType = "delete" | "compress"; /** * LifecycleType namespace providing constant values for runtime usage. */ export declare namespace LifecycleType { const DELETE: LifecycleType; const COMPRESS: LifecycleType; } export declare const DEFAULT_LIFECYCLE_TYPE: LifecycleType; export declare const parseLifecycleType: (type?: string) => LifecycleType;