summaryrefslogtreecommitdiff
path: root/node_modules/typedoc/dist/lib/output/themes/default/partials/footer.js
blob: d78f8a237c1534cfa1b3bba378c6803d4b95f664 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.footer = void 0;
const utils_1 = require("../../../../utils");
function footer(context) {
    const hideGenerator = context.options.getValue("hideGenerator");
    if (!hideGenerator)
        return (utils_1.JSX.createElement("div", { class: "tsd-generator" },
            utils_1.JSX.createElement("p", null,
                "Generated using ",
                utils_1.JSX.createElement("a", { href: "https://typedoc.org/", target: "_blank" }, "TypeDoc"))));
}
exports.footer = footer;