mongodb-atlas-api-client
Version:
A mongodb atlas api client for nodejs.
9 lines (8 loc) • 367 B
TypeScript
import {AtlasClientOptions, AtlasError} from '.';
// AlertClient
export type AlertId = string;
export interface Alert {
get(alertId: AlertId, options?: AtlasClientOptions): Promise<any | AtlasError>;
getAll(options?: AtlasClientOptions): Promise<any | AtlasError>;
acknowledge(alertId: AlertId, options?: AtlasClientOptions): Promise<any | AtlasError>;
}