UNPKG

226 BTypeScriptView Raw
1import { ComponentMap } from './renderer';
2export interface Listener {
3 next(scope: 'current' | 'jsx'): typeof scope extends 'current' ? (id: string) => void : (id: string, jsx: string, components: ComponentMap) => void;
4}