UNPKG

@azure/cosmos

Version:
11 lines 513 B
import { ResourceResponse } from "../../request/ResourceResponse.js"; /** Response object for Database operations */ export class DatabaseResponse extends ResourceResponse { constructor(resource, headers, statusCode, database, diagnostics) { super(resource, headers, statusCode, diagnostics); this.database = database; } /** A reference to the {@link Database} that the returned {@link DatabaseDefinition} corresponds to. */ database; } //# sourceMappingURL=DatabaseResponse.js.map