import type { TestEvent } from '../../model/event';
import type { TestConsumerShape } from '../types';
import { TestConsumer } from '../registry';
@TestConsumer()
export class NoopConsumer implements TestConsumerShape {
onEvent(event: TestEvent): void { }
}