dataset-types 3.0.9 → 3.0.10
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.
- package/index.d.ts +2 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -20,6 +20,8 @@ export interface IName {
|
|
|
20
20
|
export interface IDataRow {
|
|
21
21
|
id: string;
|
|
22
22
|
}
|
|
23
|
+
export interface INamedDataRow extends IDataRow, IName {
|
|
24
|
+
}
|
|
23
25
|
export interface IEntity extends IDataRow {
|
|
24
26
|
type: string;
|
|
25
27
|
delete?: string;
|
|
@@ -169,7 +171,6 @@ export type IProject = IDataLockable & IDataArchivable & {
|
|
|
169
171
|
};
|
|
170
172
|
export interface ICategory extends INamedEntity {
|
|
171
173
|
colour: number;
|
|
172
|
-
Projects?: IProject[];
|
|
173
174
|
}
|
|
174
175
|
export interface IAction {
|
|
175
176
|
name: (item: any) => string;
|