This repository has been archived on 2024-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ts-interfaces/containers.ts
T
2024-05-27 23:41:31 +02:00

7 lines
129 B
TypeScript

export enum ContainerVisibility {
NONE = "none",
ONLY_LAST = "only_last",
ALL = "all",
PROTECTED = "protected"
}