mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 19:07:08 +00:00
11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
// Type definitions for eetase 4.0
|
|
// Project: https://github.com/SocketCluster/eetase
|
|
// Definitions by: Daniel Rose <https://github.com/DanielRose>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
import AsyncStreamEmitter = require('async-stream-emitter');
|
|
|
|
declare function eetase<T>(object: T): AsyncStreamEmitter<any> & T;
|
|
|
|
export = eetase;
|