Skip to content

Commit

Permalink
fix: export lawo parametertype
Browse files Browse the repository at this point in the history
  • Loading branch information
mint-dewit committed Sep 5, 2023
1 parent 6b78bd4 commit 65a73c4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ exports[`index imports 1`] = `
"DeviceType",
"Direction",
"Ease",
"EmberParameterType",
"HyperdeckActions",
"LawoDeviceMode",
"MappingAtemType",
Expand Down
6 changes: 3 additions & 3 deletions packages/timeline-state-resolver-types/src/lawo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { Mapping } from './mapping'
import { DeviceType } from '.'

export type EmberValue = number | string | boolean | Buffer | null
enum ParameterType {
export enum EmberParameterType {
Null = 'NULL',
Integer = 'INTEGER',
Real = 'REAL',
Expand All @@ -17,7 +17,7 @@ export interface MappingLawo extends Mapping {
device: DeviceType.LAWO
mappingType: MappingLawoType
identifier?: string
emberType?: ParameterType
emberType?: EmberParameterType
priority?: number
}
export enum MappingLawoType {
Expand Down Expand Up @@ -52,7 +52,7 @@ export type SetLawoValueFn = (command: LawoCommand, timelineObjId: string, logCo
export interface LawoCommand {
path: string
value: EmberValue
valueType: ParameterType
valueType: EmberParameterType
key: string
identifier: string
type: TimelineContentTypeLawo
Expand Down

0 comments on commit 65a73c4

Please sign in to comment.