svelte
Version:
Cybernetically enhanced web apps
12 lines (11 loc) • 353 B
TypeScript
import Node from './shared/Node';
import Binding from './Binding';
import EventHandler from './EventHandler';
import Action from './Action';
export default class Window extends Node {
type: 'Window';
handlers: EventHandler[];
bindings: Binding[];
actions: Action[];
constructor(component: any, parent: any, scope: any, info: any);
}