Skip to content

Commit

Permalink
fix incorrect types in shared models
Browse files Browse the repository at this point in the history
  • Loading branch information
osdiab committed Nov 2, 2018
1 parent 9a88c5f commit 0e5fc0a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/shared/src/models/MediaReference.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export enum MediaReferenceKind {
}

export interface MediaReferenceContent<Kind extends MediaReferenceKind> {
kind: MediaReferenceKind;
kind: Kind;
url: string;
}

Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/routes/members/definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ export const verifyMemberApiLocation: VerifyMemberApiLocation = {
authenticated: true
};
export interface VerifyMemberApiCallBody {
videoReference: string;
videoReference: VideoReference;
}
export type VerifyMemberApiCall = ApiCallDefinition<
VerifyMemberApiLocation["uri"],
Expand Down

0 comments on commit 0e5fc0a

Please sign in to comment.