diff options
author | Marcin Zelent <marcin@zelent.net> | 2022-12-05 13:00:06 +0100 |
---|---|---|
committer | Marcin Zelent <marcin@zelent.net> | 2022-12-05 13:00:06 +0100 |
commit | 68a7c103b72910ac904cbf72afaffcfe56af1e4f (patch) | |
tree | a1d2d67229d52f6f06c76e0e7442678048b12fc3 /src/models/Group.ts | |
parent | af173870fa08d1a671dad50eac0a8d0894c5be3d (diff) |
Added sorting of groups
Diffstat (limited to 'src/models/Group.ts')
-rw-r--r-- | src/models/Group.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/models/Group.ts b/src/models/Group.ts index 9b3aa6d..c0d281d 100644 --- a/src/models/Group.ts +++ b/src/models/Group.ts @@ -19,7 +19,7 @@ export default interface Group { description?: string;
/**
- * Medias in the group.
+ * Media in the group.
*/
media: MediaItem[];
@@ -32,4 +32,6 @@ export default interface Group { * Metadata that can be displayed in the description.
*/
metadata?: { [key: string]: string | number };
+
+ [key: string]: any;
}
|