-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Remove ExpectedPlayoutItemContentBase from tsr-types [publish]
- Loading branch information
Showing
5 changed files
with
20 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { ExpectedPlayoutItemContent } from './types/src' | ||
|
||
export interface ExpectedPlayoutItemContentBase { | ||
/** Id of the rundown the items comes from */ | ||
rundownId: string | ||
/** Id of the rundown playlist the items comes from */ | ||
playlistId: string | ||
} | ||
|
||
export type ExpectedPlayoutItem = ExpectedPlayoutItemContent & ExpectedPlayoutItemContentBase |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,3 @@ | ||
import { VIZMSEPlayoutItemContent } from './vizMSE' | ||
|
||
export type ExpectedPlayoutItemContent = ExpectedPlayoutItemContentVizMSE | ||
|
||
export interface ExpectedPlayoutItemContentBase { | ||
/** Id of the rundown the items comes from */ | ||
rundownId: string | ||
/** Id of the rundown playlist the items comes from */ | ||
playlistId: string | ||
} | ||
export type ExpectedPlayoutItemContentVizMSE = ExpectedPlayoutItemContentBase & VIZMSEPlayoutItemContent | ||
export type ExpectedPlayoutItemContent = VIZMSEPlayoutItemContent |