UNPKG

antora-confluence

Version:

A tool to convert and publish Antora documentation to Confluence

28 lines (27 loc) 925 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const ConfluenceClient_1 = require("../../lib/client/ConfluenceClient"); class ConfluenceClientStub extends ConfluenceClient_1.ConfluenceClient { createPage(page, status) { throw new Error("Method not implemented."); } updatePage(page, pageId, newVersion, status) { throw new Error("Method not implemented."); } createAttachment(attachment) { throw new Error("Method not implemented."); } deletePage(pageId) { throw new Error("Method not implemented."); } updateAttachment(attachment) { throw new Error("Method not implemented."); } getAttachment(pageId, fileName) { throw new Error("Method not implemented."); } fetchPageIdByName(title, status) { throw new Error("Method not implemented."); } } exports.default = ConfluenceClientStub;