"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.showHidePreviewPane = exports.showHideParentPreview = exports.showHideLinkPreview = exports.showHideIMContactList = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
* @file Show & Hide
* @module showhide
* @category Show & Hide
*/
const notesc = tslib_1.__importStar(require("../notes/showhide"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands showhide
/**
* Toggles the display of the Instant Messaging Contact List.
* @throws {Error} no plans to implement
*/
function showHideIMContactList() {
return notesc.ShowHideIMContactList();
}
exports.showHideIMContactList = showHideIMContactList;
/**
* Toggles the display of the link preview pane.
* @throws {Error} no plans to implement
*/
function showHideLinkPreview() {
return notesc.ShowHideLinkPreview();
}
exports.showHideLinkPreview = showHideLinkPreview;
/**
* Toggles the display of the parent document preview pane.
* @throws {Error} no plans to implement
*/
function showHideParentPreview() {
return notesc.ShowHideParentPreview();
}
exports.showHideParentPreview = showHideParentPreview;
/**
* Toggles the display of the document preview pane.
* @throws {Error} no plans to implement
*/
function showHidePreviewPane() {
return notesc.ShowHidePreviewPane();
}
exports.showHidePreviewPane = showHidePreviewPane;
//# sourceMappingURL=showhide.js.map