@intellegens/cornerstone-client 0.0.9999-alpha-20 → 0.0.9999-alpha-21

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,7 @@
1
+ import { IIdentifiable } from "../..";
2
+ export interface ICommonIdentifiable<TKey> extends IIdentifiable<TKey> {
3
+ /**
4
+ * Gets or sets the type of the entity.
5
+ */
6
+ type: string;
7
+ }
@@ -0,0 +1 @@
1
+ export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intellegens/cornerstone-client",
3
- "version": "0.0.9999-alpha-20",
3
+ "version": "0.0.9999-alpha-21",
4
4
  "private": false,
5
5
  "publishable": true,
6
6
  "main": "./dist/index.js",
@@ -0,0 +1,9 @@
1
+ import {IIdentifiable} from "@data";
2
+
3
+
4
+ export interface ICommonIdentifiable<TKey> extends IIdentifiable<TKey> {
5
+ /**
6
+ * Gets or sets the type of the entity.
7
+ */
8
+ type: string;
9
+ }