cat-documents-ng 0.2.49 → 0.2.51

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,15 @@
1
+ /**
2
+ * Storing all permission properties.
3
+ * @export
4
+ * @class PERMISSIONS
5
+ * @typedef {PERMISSIONS}
6
+ */
7
+ export declare class PERMISSIONS {
8
+ /**
9
+ * Access permission.
10
+ * @static
11
+ * @type {string}
12
+ */
13
+ static DOCUMENT_POST: string;
14
+ static DOCUMENT_DELETE: string;
15
+ }