UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

18 lines (13 loc) 505 B
// Describes the package to typescript users. import {Readable, Writable} from 'stream'; /** A stream that reads from a string given at creation time. */ export declare class ReadableStream extends Readable { constructor(contents: string); } /** A stream that writes into an in-memory buffer. */ export declare class WritableStream extends Writable { /** Returns the written contents as a string. */ toString(): string; /** Returns the written contents as a buffer. */ toBuffer(): Buffer; }