UNPKG

194 BPlain TextView Raw
1import {Snapshot} from '../snapshot';
2
3export interface OutputProducer {
4 initialize(): void;
5
6 write<V>(snapshot: Snapshot<V>): Promise<void>;
7
8 exception(exception: Error): Promise<void>;
9}
\No newline at end of file