UNPKG

gy-foo

Version:

A library that contains all models for the gy-web-project.

18 lines (17 loc) 317 B
/** * Save modes for Occurrences */ export declare enum ModeFlags { /** * Add this new Occurrence to the Entity */ ADD = "add", /** * This Occurrence is a Copy of another Occurrence */ CPY = "cpy", /** * Delete this Occurrence from the Entity */ DEL = "del" }