"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.workspaceStackReplicaIcons = exports.workspaceProperties = void 0;
const tslib_1 = require("tslib");
/**
* @file workspace
* @module workspace
* @category Workspace
*/
const notesf_base = tslib_1.__importStar(require("../notes/workspace"));
const notesc = () => notesf_base;
/**
* Displays the Properties box for the Notes/Domino workspace.
* @throws {Error} no plans to implement
*/
function workspaceProperties() {
return notesc().WorkspaceProperties();
}
exports.workspaceProperties = workspaceProperties;
/**
* For databases on the workspace that are replicas of one another, stacks them
* into a single icon. The command is a toggle; selecting it a second time unstacks
* the replica icons and displays each icon individually.
* @throws {Error} no plans to implement
*/
function workspaceStackReplicaIcons() {
return notesc().WorkspaceStackReplicaIcons();
}
exports.workspaceStackReplicaIcons = workspaceStackReplicaIcons;
//# sourceMappingURL=workspace.js.map