UNPKG

@dolittle/sdk.tenancy

Version:

Dolittle is a decentralized, distributed, event-driven microservice platform built to harness the power of events.

13 lines 419 B
import { Cancellation } from '@dolittle/sdk.resilience'; import { Tenant } from './Tenant'; /** * Represents a system that knows about Tenants in the Runtime. */ export declare abstract class ITenants { /** * Gets all tenants. * @param cancellation - The optional {@link Cancellation}. */ abstract getAll(cancellation?: Cancellation): Promise<Tenant[]>; } //# sourceMappingURL=ITenants.d.ts.map