Skip to content

Commit

Permalink
Remove incorrect typing
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierce01 committed Sep 22, 2023
1 parent ac40674 commit af31a46
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions src/lib/utility/Global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export interface Content {
contentTypeLock: Lock;
elements: Elements;
contentType: ContentType;
types: Types;
types: Type[];
insertAtIndex: string;
sortLock: string;
excludedMirrorSectionIds: string;
Expand Down Expand Up @@ -186,12 +186,6 @@ export interface Owner {
type: string;
}

export interface Types {
id: string;
name: string;
listType: string;
}

export interface ContentDTO {
id: string;
contentTypeID: string;
Expand Down Expand Up @@ -223,7 +217,7 @@ export interface ContentDTO {
elements: Elements;
contentTypeElements?: Elements;
contentType: ContentType;
types: string;
types: Type[];
insertAtIndex: string;
sortLock: sortLock;
excludedMirrorSectionIds: string;
Expand Down

0 comments on commit af31a46

Please sign in to comment.