Interface ISource

interface ISource {
    start(): Promise<boolean>;
    stop(): void;
}

Methods

Methods

  • Returns Promise<boolean>