UNPKG

xatto

Version:

xatto is View Layer Library based on Function and Context using VirtualDOM. This is developed by forking from jorgebucaran/superfine.

10 lines (8 loc) 202 B
import { Subscription } from './Subscription' export interface Observable<T> { subscribe: ( next: (value: T) => void, fail?: (err: Error) => void, comp?: () => void ) => Subscription }