Skip to content

Commit

Permalink
feat: export commands and substates
Browse files Browse the repository at this point in the history
  • Loading branch information
Balte de Wit committed May 1, 2018
1 parent 3fdabba commit 9be9e61
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@ export * from './atem'
export * from './state'

import * as Enums from './enums'
import * as Commands from './commands'
export {
Enums
Enums,
Commands
}

import * as VideoState from './state/video'
import * as AudioState from './state/audio'
import * as MediaState from './state/media'
import * as InfoState from './state/info'
import * as InputState from './state/input'
export {
VideoState,
AudioState,
MediaState,
InfoState,
InputState
}

0 comments on commit 9be9e61

Please sign in to comment.