UNPKG

@themost/jspa

Version:
13 lines (12 loc) 246 B
/** * Defines the set of cascadable operations that are propagated to the associated entity. */ declare enum CascadeType { All = 31, Detach = 1, Merge = 2, Persist = 4, Refresh = 8, Remove = 16 } export { CascadeType };