UNPKG

@kvaser/canking-api

Version:

CanKing API to communicate with the CanKing service using Node.js.

25 lines (24 loc) 851 B
/** * This module includes React hooks for getting/setting data from/to CanKing. * * To be able to use these hooks the CanKingDataProvider component must be present in the * component tree above your component. Normally the CanKingDataProvider is added * at the root of the component tree. * * @example * ``` * import { useUserSettings } from '@kvaser/canking-api/hooks'; * ... * const userSettings = useUserSettings(); * ``` * * @packageDocumentation */ export * from './useUserSettings'; export * from './useDevices'; export * from './useApplication'; export * from './useMeasurement'; export * from './useSignalData'; export * from './useWorkspaceData'; export * from './useUndo'; export { type IMeasurementSetupContext, type IOnlineStatusContext, type IDevicesContext, type IMeasurementStatusContext, } from './internalDataStores';