Add individuals metadata

This commit is contained in:
MrKBear 2022-02-18 14:38:30 +08:00
parent c1dde87e30
commit b10b614113
2 changed files with 5 additions and 2 deletions

View File

@ -1,11 +1,12 @@
import { Individual } from "./Individual"; import { Individual } from "./Individual";
import { LabelObject } from "./Label";
import type { Behavior } from "./Behavior"; import type { Behavior } from "./Behavior";
import type { Model } from "./Model"; import type { Model } from "./Model";
/** /**
* *
*/ */
class Group { class Group extends LabelObject {
/** /**
* *

View File

@ -79,4 +79,6 @@ class LabelObject {
}); });
return has; return has;
} }
} }
export { Label, LabelObject };