@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
11 lines (10 loc) • 462 B
TypeScript
import { ConnectedTenant, GuidValue } from "../models";
export declare class ConnectedTenantService {
private httpClient;
private readonly baseUrl;
getAll: () => Promise<Array<ConnectedTenant>>;
add: (connectedTenant: ConnectedTenant) => Promise<ConnectedTenant>;
update: (connectedTenant: ConnectedTenant) => Promise<ConnectedTenant>;
delete: (id: GuidValue) => Promise<void>;
getById: (id: GuidValue) => Promise<ConnectedTenant>;
}