UNPKG

@barfinex/types

Version:

Core TypeScript type definitions and shared interfaces for the Barfinex ecosystem. Provides strongly-typed contracts for modules, services, and plugins.

16 lines 533 B
/** * Interface representing the regulation for an inspector. */ export interface InspectorRegulation { /** * System name of the detector that the regulation applies to. */ detectorSysname: string; } /** * Type representing a handler function for processing inspector regulations. * * @param inspectorRegulation - The regulation object to be processed. */ export type InspectorRegulationHandler = (inspectorRegulation: InspectorRegulation) => void; //# sourceMappingURL=inspector-regulation.interface.d.ts.map