import { ISettings } from "../ISettings";
/**
 * Обьект данных передаваемых по шине
 */
export interface IEventData extends ISettings {
    _cb?: {
        func: () => void;
    };
}
