feat: support binding context var (#1227)
Co-authored-by: Joel <iamjoel007@gmail.com>
This commit is contained in:
@@ -37,6 +37,7 @@ type IDebugConfiguration = {
|
||||
setModelConfig: (modelConfig: ModelConfig) => void
|
||||
dataSets: DataSet[]
|
||||
setDataSets: (dataSet: DataSet[]) => void
|
||||
hasSetContextVar: boolean
|
||||
}
|
||||
|
||||
const DebugConfigurationContext = createContext<IDebugConfiguration>({
|
||||
@@ -102,6 +103,7 @@ const DebugConfigurationContext = createContext<IDebugConfiguration>({
|
||||
setModelConfig: () => { },
|
||||
dataSets: [],
|
||||
setDataSets: () => { },
|
||||
hasSetContextVar: false,
|
||||
})
|
||||
|
||||
export default DebugConfigurationContext
|
||||
|
Reference in New Issue
Block a user