@webdoc/externalize
Version:
Links your documentation to external APIs and vice versa!
14 lines (11 loc) • 579 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.PARAM_PROPS = exports.LINK_PROPS = exports.BASE_PROPS = void 0;
const BASE_PROPS = ["id", "name", "brief", "abstract", "access", "authors", "copyright", "defaultValue", "deprecated", "examples", "license", "readonly", "scope", "see", "since", "type", "version"];
exports.BASE_PROPS = BASE_PROPS;
const LINK_PROPS = ["extends", "implements", "mixes"];
exports.LINK_PROPS = LINK_PROPS;
const PARAM_PROPS = ["identifier", "optional", "default", "variadic"];
exports.PARAM_PROPS = PARAM_PROPS;