Interface IStreamModel

interface IStreamModel {
    handleStream(event: StreamEvent): void;
    path(): string;
}

Methods