UNPKG

type-r

Version:

Serializable, validated, and observable data layer for modern JS applications

12 lines (10 loc) 348 B
// (c) 2016 Vlad Balin and Volicon // MixtureJS may be freely distributed under the MIT license. import * as eventsApi from './eventsource'; import * as tools from './tools'; export * from './events'; export * from './logging'; export * from './mixins'; export { tools }; export { eventsApi }; export type TheType<X> = { [K in keyof X] : X[K] };