Interface ExposureFetchClient

interface ExposureFetchClient {
    event<P>(id: string, payload?: P): Promise<void>;
    task<I, O>(id: string, input?: I): Promise<O>;
}

Methods

Methods