help.js

"use strict";
/***************************************************
* Licensed Materials - Property of HCL.
* (c)Copyright HCL America, Inc. 2023-2024
****************************************************/
Object.defineProperty(exports, "__esModule", { value: true });
exports.helpUsingDatabase = exports.helpAboutNotes = exports.helpAboutDatabase = exports._notes = void 0;
const tslib_1 = require("tslib");
/**
 * @file Help
 * @module help
 * @category Help
 */
const notesc = tslib_1.__importStar(require("../notes/help"));
exports._notes = notesc;
//-----------------------------
// Notes @Commands help
/**
 * Displays the About This Database or database policy document for the current
 * database (which typically explains the purpose of the application, as well as
 * its intended audience).
 * @throws {Error} No plans to implement
 */
function helpAboutDatabase() {
    return notesc.HelpAboutDatabase();
}
exports.helpAboutDatabase = helpAboutDatabase;
/**
 * Displays the NotesĀ® splash screen that appears when you launch Notes/Domino. The
 * screen displays the current release number and date.
 * @throws {Error} No plans to implement
 */
function helpAboutNotes() {
    return notesc.HelpAboutNotes();
}
exports.helpAboutNotes = helpAboutNotes;
/**
 * Displays the Using This Database document for the current database. The Using
 * This Database document typically provides pointers on how to use an
 * application's forms and views.
 * @throws {Error} No plans to implement
 */
function helpUsingDatabase() {
    return notesc.HelpUsingDatabase();
}
exports.helpUsingDatabase = helpUsingDatabase;
//# sourceMappingURL=help.js.map