File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ import osc, { OscMessage } from 'osc'
44import { CompanionVariableDefinition , CompanionVariableValues , OSCMetaArgument } from '@companion-module/base'
55import * as ActionUtil from '../actions/utils.js'
66import { IoCommands } from '../commands/io.js'
7- import { getAllVariables } from './index.js'
87import debounceFn from 'debounce-fn'
98import { ModuleLogger } from '../handlers/logger.js'
9+ import { getAllVariables } from '../variables/index.js'
1010
1111const RE_NAME = / \/ ( \w + ) \/ ( \d + ) \/ \$ ? n a m e /
1212const RE_GAIN = / \/ ( \w + ) \/ ( \d + ) \/ i n \/ s e t \/ \$ g /
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ import { GetPresets } from './presets.js'
2020import { ConnectionHandler } from './handlers/connection-handler.js'
2121import { StateHandler } from './handlers/state-handler.js'
2222import { FeedbackHandler } from './handlers/feedback-handler.js'
23- import { VariableHandler } from './variables /variable-handler.js'
23+ import { VariableHandler } from './handlers /variable-handler.js'
2424import { OscForwarder } from './handlers/osc-forwarder.js'
2525import debounceFn from 'debounce-fn'
2626import { ModuleLogger } from './handlers/logger.js'
Original file line number Diff line number Diff line change @@ -13,5 +13,5 @@ export interface InstanceBaseExt<TConfig> extends InstanceBase<TConfig> {
1313 connection ?: import ( './handlers/connection-handler.js' ) . ConnectionHandler | undefined
1414 stateHandler ?: import ( './handlers/state-handler.js' ) . StateHandler | undefined
1515 feedbackHandler ?: import ( './handlers/feedback-handler.js' ) . FeedbackHandler | undefined
16- variableHandler ?: import ( './variables /variable-handler.js' ) . VariableHandler | undefined
16+ variableHandler ?: import ( './handlers /variable-handler.js' ) . VariableHandler | undefined
1717}
You can’t perform that action at this time.
0 commit comments