UNPKG

siesta-lite

Version:

Stress-free JavaScript unit testing and functional testing tool, works in NodeJS and browsers

19 lines (11 loc) 333 B
export type Channel = any export type Message = any export type EnvelopId = number export type EnvelopType = any export interface Envelop { id : EnvelopId inResponseOf? : EnvelopId type? : EnvelopType isRejection? : boolean payload : any }