@kubb/plugin-redoc 5.0.0-alpha.2 → 5.0.0-alpha.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +7 -6
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.js +8 -7
- package/dist/index.js.map +1 -1
- package/package.json +7 -8
- package/src/plugin.ts +20 -7
- package/src/redoc.tsx +2 -2
- package/src/types.ts +2 -2
package/dist/index.cjs
CHANGED
|
@@ -23,8 +23,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
23
23
|
//#endregion
|
|
24
24
|
let node_path = require("node:path");
|
|
25
25
|
node_path = __toESM(node_path);
|
|
26
|
+
let _kubb_adapter_oas = require("@kubb/adapter-oas");
|
|
26
27
|
let _kubb_core = require("@kubb/core");
|
|
27
|
-
let _kubb_plugin_oas = require("@kubb/plugin-oas");
|
|
28
28
|
let node_fs = require("node:fs");
|
|
29
29
|
node_fs = __toESM(node_fs);
|
|
30
30
|
let node_url = require("node:url");
|
|
@@ -57,7 +57,7 @@ function trimExtName(text) {
|
|
|
57
57
|
return text.replace(/\.[^/.]+$/, "");
|
|
58
58
|
}
|
|
59
59
|
const pluginRedocName = "plugin-redoc";
|
|
60
|
-
const pluginRedoc = (0, _kubb_core.
|
|
60
|
+
const pluginRedoc = (0, _kubb_core.createPlugin)((options) => {
|
|
61
61
|
const { output = { path: "docs.html" } } = options;
|
|
62
62
|
return {
|
|
63
63
|
name: pluginRedocName,
|
|
@@ -65,12 +65,13 @@ const pluginRedoc = (0, _kubb_core.definePlugin)((options) => {
|
|
|
65
65
|
output,
|
|
66
66
|
name: trimExtName(output.path)
|
|
67
67
|
},
|
|
68
|
-
pre: [_kubb_plugin_oas.pluginOasName],
|
|
69
68
|
async install() {
|
|
70
|
-
const
|
|
71
|
-
|
|
69
|
+
const adapter = this.adapter;
|
|
70
|
+
if (adapter?.name !== _kubb_adapter_oas.adapterOasName) throw new Error(`[${pluginRedocName}] plugin-redoc requires the OpenAPI adapter. Make sure you are using adapterOas (e.g. \`adapter: adapterOas()\`) in your Kubb config.`);
|
|
71
|
+
const document = adapter.document;
|
|
72
|
+
if (!document) throw new Error(`[${pluginRedocName}] No OpenAPI document found. The adapterOas did not produce a document — ensure the adapter has run before this plugin.`);
|
|
72
73
|
const root = node_path.default.resolve(this.config.root, this.config.output.path);
|
|
73
|
-
const pageHTML = await getPageHTML(
|
|
74
|
+
const pageHTML = await getPageHTML(document);
|
|
74
75
|
await this.addFile({
|
|
75
76
|
baseName: "docs.html",
|
|
76
77
|
path: node_path.default.resolve(root, output.path || "./docs.html"),
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","names":["__filename","__dirname","path","pkg","fs","
|
|
1
|
+
{"version":3,"file":"index.cjs","names":["__filename","__dirname","path","pkg","fs","adapterOasName","path"],"sources":["../src/redoc.tsx","../src/plugin.ts"],"sourcesContent":["import fs from 'node:fs'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport type { AdapterOas } from '@kubb/adapter-oas'\nimport pkg from 'handlebars'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(__filename)\n\ntype BuildDocsOptions = {\n title?: string\n disableGoogleFont?: boolean\n templateOptions?: any\n}\n\nexport async function getPageHTML(api: AdapterOas['document'], { title, disableGoogleFont, templateOptions }: BuildDocsOptions = {}) {\n const templateFileName = path.join(__dirname, '../static/redoc.hbs')\n const template = pkg.compile(fs.readFileSync(templateFileName).toString())\n return template({\n title: title || api.info.title || 'ReDoc documentation',\n redocHTML: `\n <script src=\"https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js\"> </script>\n <div id=\"redoc-container\"></div>\n <script>\n const data = ${JSON.stringify(api, null, 2)};\n Redoc.init(data, {\n \"expandResponses\": \"200,400\"\n }, document.getElementById('redoc-container'))\n </script>\n `,\n disableGoogleFont,\n templateOptions,\n })\n}\n","import path from 'node:path'\nimport type { AdapterOas } from '@kubb/adapter-oas'\nimport { adapterOasName } from '@kubb/adapter-oas'\nimport { type Adapter, createPlugin } from '@kubb/core'\nimport { getPageHTML } from './redoc.tsx'\nimport type { PluginRedoc } from './types.ts'\n\nfunction trimExtName(text: string): string {\n return text.replace(/\\.[^/.]+$/, '')\n}\n\nexport const pluginRedocName = 'plugin-redoc' satisfies PluginRedoc['name']\n\nexport const pluginRedoc = createPlugin<PluginRedoc>((options) => {\n const { output = { path: 'docs.html' } } = options\n\n return {\n name: pluginRedocName,\n options: {\n output,\n name: trimExtName(output.path),\n },\n async install() {\n const adapter = this.adapter\n\n if (adapter?.name !== adapterOasName) {\n throw new Error(\n `[${pluginRedocName}] plugin-redoc requires the OpenAPI adapter. Make sure you are using adapterOas (e.g. \\`adapter: adapterOas()\\`) in your Kubb config.`,\n )\n }\n\n const document = (adapter as Adapter<AdapterOas>).document\n\n if (!document) {\n throw new Error(\n `[${pluginRedocName}] No OpenAPI document found. The adapterOas did not produce a document — ensure the adapter has run before this plugin.`,\n )\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n const pageHTML = await getPageHTML(document)\n\n await this.addFile({\n baseName: 'docs.html',\n path: path.resolve(root, output.path || './docs.html'),\n sources: [\n {\n name: 'docs.html',\n value: pageHTML,\n },\n ],\n imports: [],\n exports: [],\n })\n },\n }\n})\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAMA,MAAMA,gBAAAA,GAAAA,SAAAA,eAAAA,QAAAA,MAAAA,CAAAA,cAAAA,WAAAA,CAAAA,KAA2C;AACjD,MAAMC,cAAYC,UAAAA,QAAK,QAAQF,aAAW;AAQ1C,eAAsB,YAAY,KAA6B,EAAE,OAAO,mBAAmB,oBAAsC,EAAE,EAAE;CACnI,MAAM,mBAAmBE,UAAAA,QAAK,KAAKD,aAAW,sBAAsB;AAEpE,QADiBE,WAAAA,QAAI,QAAQC,QAAAA,QAAG,aAAa,iBAAiB,CAAC,UAAU,CAAC,CAC1D;EACd,OAAO,SAAS,IAAI,KAAK,SAAS;EAClC,WAAW;;;;kBAIG,KAAK,UAAU,KAAK,MAAM,EAAE,CAAC;;;;;;EAM3C;EACA;EACD,CAAC;;;;ACzBJ,SAAS,YAAY,MAAsB;AACzC,QAAO,KAAK,QAAQ,aAAa,GAAG;;AAGtC,MAAa,kBAAkB;AAE/B,MAAa,eAAA,GAAA,WAAA,eAAyC,YAAY;CAChE,MAAM,EAAE,SAAS,EAAE,MAAM,aAAa,KAAK;AAE3C,QAAO;EACL,MAAM;EACN,SAAS;GACP;GACA,MAAM,YAAY,OAAO,KAAK;GAC/B;EACD,MAAM,UAAU;GACd,MAAM,UAAU,KAAK;AAErB,OAAI,SAAS,SAASC,kBAAAA,eACpB,OAAM,IAAI,MACR,IAAI,gBAAgB,uIACrB;GAGH,MAAM,WAAY,QAAgC;AAElD,OAAI,CAAC,SACH,OAAM,IAAI,MACR,IAAI,gBAAgB,yHACrB;GAGH,MAAM,OAAOC,UAAAA,QAAK,QAAQ,KAAK,OAAO,MAAM,KAAK,OAAO,OAAO,KAAK;GACpE,MAAM,WAAW,MAAM,YAAY,SAAS;AAE5C,SAAM,KAAK,QAAQ;IACjB,UAAU;IACV,MAAMA,UAAAA,QAAK,QAAQ,MAAM,OAAO,QAAQ,cAAc;IACtD,SAAS,CACP;KACE,MAAM;KACN,OAAO;KACR,CACF;IACD,SAAS,EAAE;IACX,SAAS,EAAE;IACZ,CAAC;;EAEL;EACD"}
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { t as __name } from "./chunk--u3MIqq1.js";
|
|
2
2
|
import * as _kubb_core0 from "@kubb/core";
|
|
3
3
|
import { Output, PluginFactoryOptions } from "@kubb/core";
|
|
4
|
-
import { Oas } from "@kubb/oas";
|
|
5
4
|
|
|
6
5
|
//#region src/types.d.ts
|
|
7
6
|
type Options = {
|
|
@@ -14,7 +13,8 @@ type Options = {
|
|
|
14
13
|
};
|
|
15
14
|
};
|
|
16
15
|
type ResolveOptions = {
|
|
17
|
-
output: Output<
|
|
16
|
+
output: Output<never>;
|
|
17
|
+
name: string;
|
|
18
18
|
};
|
|
19
19
|
type PluginRedoc = PluginFactoryOptions<'plugin-redoc', Options, ResolveOptions, never>;
|
|
20
20
|
//#endregion
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import "./chunk--u3MIqq1.js";
|
|
2
2
|
import path from "node:path";
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
3
|
+
import { adapterOasName } from "@kubb/adapter-oas";
|
|
4
|
+
import { createPlugin } from "@kubb/core";
|
|
5
5
|
import fs from "node:fs";
|
|
6
6
|
import { fileURLToPath } from "node:url";
|
|
7
7
|
import pkg from "handlebars";
|
|
@@ -32,7 +32,7 @@ function trimExtName(text) {
|
|
|
32
32
|
return text.replace(/\.[^/.]+$/, "");
|
|
33
33
|
}
|
|
34
34
|
const pluginRedocName = "plugin-redoc";
|
|
35
|
-
const pluginRedoc =
|
|
35
|
+
const pluginRedoc = createPlugin((options) => {
|
|
36
36
|
const { output = { path: "docs.html" } } = options;
|
|
37
37
|
return {
|
|
38
38
|
name: pluginRedocName,
|
|
@@ -40,12 +40,13 @@ const pluginRedoc = definePlugin((options) => {
|
|
|
40
40
|
output,
|
|
41
41
|
name: trimExtName(output.path)
|
|
42
42
|
},
|
|
43
|
-
pre: [pluginOasName],
|
|
44
43
|
async install() {
|
|
45
|
-
const
|
|
46
|
-
|
|
44
|
+
const adapter = this.adapter;
|
|
45
|
+
if (adapter?.name !== adapterOasName) throw new Error(`[${pluginRedocName}] plugin-redoc requires the OpenAPI adapter. Make sure you are using adapterOas (e.g. \`adapter: adapterOas()\`) in your Kubb config.`);
|
|
46
|
+
const document = adapter.document;
|
|
47
|
+
if (!document) throw new Error(`[${pluginRedocName}] No OpenAPI document found. The adapterOas did not produce a document — ensure the adapter has run before this plugin.`);
|
|
47
48
|
const root = path.resolve(this.config.root, this.config.output.path);
|
|
48
|
-
const pageHTML = await getPageHTML(
|
|
49
|
+
const pageHTML = await getPageHTML(document);
|
|
49
50
|
await this.addFile({
|
|
50
51
|
baseName: "docs.html",
|
|
51
52
|
path: path.resolve(root, output.path || "./docs.html"),
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":[],"sources":["../src/redoc.tsx","../src/plugin.ts"],"sourcesContent":["import fs from 'node:fs'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport type {
|
|
1
|
+
{"version":3,"file":"index.js","names":[],"sources":["../src/redoc.tsx","../src/plugin.ts"],"sourcesContent":["import fs from 'node:fs'\nimport path from 'node:path'\nimport { fileURLToPath } from 'node:url'\nimport type { AdapterOas } from '@kubb/adapter-oas'\nimport pkg from 'handlebars'\n\nconst __filename = fileURLToPath(import.meta.url)\nconst __dirname = path.dirname(__filename)\n\ntype BuildDocsOptions = {\n title?: string\n disableGoogleFont?: boolean\n templateOptions?: any\n}\n\nexport async function getPageHTML(api: AdapterOas['document'], { title, disableGoogleFont, templateOptions }: BuildDocsOptions = {}) {\n const templateFileName = path.join(__dirname, '../static/redoc.hbs')\n const template = pkg.compile(fs.readFileSync(templateFileName).toString())\n return template({\n title: title || api.info.title || 'ReDoc documentation',\n redocHTML: `\n <script src=\"https://cdn.redoc.ly/redoc/latest/bundles/redoc.standalone.js\"> </script>\n <div id=\"redoc-container\"></div>\n <script>\n const data = ${JSON.stringify(api, null, 2)};\n Redoc.init(data, {\n \"expandResponses\": \"200,400\"\n }, document.getElementById('redoc-container'))\n </script>\n `,\n disableGoogleFont,\n templateOptions,\n })\n}\n","import path from 'node:path'\nimport type { AdapterOas } from '@kubb/adapter-oas'\nimport { adapterOasName } from '@kubb/adapter-oas'\nimport { type Adapter, createPlugin } from '@kubb/core'\nimport { getPageHTML } from './redoc.tsx'\nimport type { PluginRedoc } from './types.ts'\n\nfunction trimExtName(text: string): string {\n return text.replace(/\\.[^/.]+$/, '')\n}\n\nexport const pluginRedocName = 'plugin-redoc' satisfies PluginRedoc['name']\n\nexport const pluginRedoc = createPlugin<PluginRedoc>((options) => {\n const { output = { path: 'docs.html' } } = options\n\n return {\n name: pluginRedocName,\n options: {\n output,\n name: trimExtName(output.path),\n },\n async install() {\n const adapter = this.adapter\n\n if (adapter?.name !== adapterOasName) {\n throw new Error(\n `[${pluginRedocName}] plugin-redoc requires the OpenAPI adapter. Make sure you are using adapterOas (e.g. \\`adapter: adapterOas()\\`) in your Kubb config.`,\n )\n }\n\n const document = (adapter as Adapter<AdapterOas>).document\n\n if (!document) {\n throw new Error(\n `[${pluginRedocName}] No OpenAPI document found. The adapterOas did not produce a document — ensure the adapter has run before this plugin.`,\n )\n }\n\n const root = path.resolve(this.config.root, this.config.output.path)\n const pageHTML = await getPageHTML(document)\n\n await this.addFile({\n baseName: 'docs.html',\n path: path.resolve(root, output.path || './docs.html'),\n sources: [\n {\n name: 'docs.html',\n value: pageHTML,\n },\n ],\n imports: [],\n exports: [],\n })\n },\n }\n})\n"],"mappings":";;;;;;;;AAMA,MAAM,aAAa,cAAc,OAAO,KAAK,IAAI;AACjD,MAAM,YAAY,KAAK,QAAQ,WAAW;AAQ1C,eAAsB,YAAY,KAA6B,EAAE,OAAO,mBAAmB,oBAAsC,EAAE,EAAE;CACnI,MAAM,mBAAmB,KAAK,KAAK,WAAW,sBAAsB;AAEpE,QADiB,IAAI,QAAQ,GAAG,aAAa,iBAAiB,CAAC,UAAU,CAAC,CAC1D;EACd,OAAO,SAAS,IAAI,KAAK,SAAS;EAClC,WAAW;;;;kBAIG,KAAK,UAAU,KAAK,MAAM,EAAE,CAAC;;;;;;EAM3C;EACA;EACD,CAAC;;;;ACzBJ,SAAS,YAAY,MAAsB;AACzC,QAAO,KAAK,QAAQ,aAAa,GAAG;;AAGtC,MAAa,kBAAkB;AAE/B,MAAa,cAAc,cAA2B,YAAY;CAChE,MAAM,EAAE,SAAS,EAAE,MAAM,aAAa,KAAK;AAE3C,QAAO;EACL,MAAM;EACN,SAAS;GACP;GACA,MAAM,YAAY,OAAO,KAAK;GAC/B;EACD,MAAM,UAAU;GACd,MAAM,UAAU,KAAK;AAErB,OAAI,SAAS,SAAS,eACpB,OAAM,IAAI,MACR,IAAI,gBAAgB,uIACrB;GAGH,MAAM,WAAY,QAAgC;AAElD,OAAI,CAAC,SACH,OAAM,IAAI,MACR,IAAI,gBAAgB,yHACrB;GAGH,MAAM,OAAO,KAAK,QAAQ,KAAK,OAAO,MAAM,KAAK,OAAO,OAAO,KAAK;GACpE,MAAM,WAAW,MAAM,YAAY,SAAS;AAE5C,SAAM,KAAK,QAAQ;IACjB,UAAU;IACV,MAAM,KAAK,QAAQ,MAAM,OAAO,QAAQ,cAAc;IACtD,SAAS,CACP;KACE,MAAM;KACN,OAAO;KACR,CACF;IACD,SAAS,EAAE;IACX,SAAS,EAAE;IACZ,CAAC;;EAEL;EACD"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kubb/plugin-redoc",
|
|
3
|
-
"version": "5.0.0-alpha.
|
|
3
|
+
"version": "5.0.0-alpha.21",
|
|
4
4
|
"description": "Redoc documentation generator plugin for Kubb, creating beautiful, interactive API documentation from OpenAPI specifications.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"redoc",
|
|
@@ -51,16 +51,15 @@
|
|
|
51
51
|
}
|
|
52
52
|
],
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@kubb/fabric-core": "0.
|
|
55
|
-
"@kubb/react-fabric": "0.
|
|
54
|
+
"@kubb/fabric-core": "0.15.1",
|
|
55
|
+
"@kubb/react-fabric": "0.15.1",
|
|
56
56
|
"handlebars": "^4.7.8",
|
|
57
|
-
"@kubb/
|
|
58
|
-
"@kubb/
|
|
59
|
-
"@kubb/plugin-oas": "5.0.0-alpha.2"
|
|
57
|
+
"@kubb/adapter-oas": "5.0.0-alpha.21",
|
|
58
|
+
"@kubb/core": "5.0.0-alpha.21"
|
|
60
59
|
},
|
|
61
60
|
"peerDependencies": {
|
|
62
|
-
"@kubb/fabric-core": "0.
|
|
63
|
-
"@kubb/react-fabric": "0.
|
|
61
|
+
"@kubb/fabric-core": "0.15.1",
|
|
62
|
+
"@kubb/react-fabric": "0.15.1"
|
|
64
63
|
},
|
|
65
64
|
"engines": {
|
|
66
65
|
"node": ">=22"
|
package/src/plugin.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import path from 'node:path'
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
2
|
+
import type { AdapterOas } from '@kubb/adapter-oas'
|
|
3
|
+
import { adapterOasName } from '@kubb/adapter-oas'
|
|
4
|
+
import { type Adapter, createPlugin } from '@kubb/core'
|
|
4
5
|
import { getPageHTML } from './redoc.tsx'
|
|
5
6
|
import type { PluginRedoc } from './types.ts'
|
|
6
7
|
|
|
@@ -10,7 +11,7 @@ function trimExtName(text: string): string {
|
|
|
10
11
|
|
|
11
12
|
export const pluginRedocName = 'plugin-redoc' satisfies PluginRedoc['name']
|
|
12
13
|
|
|
13
|
-
export const pluginRedoc =
|
|
14
|
+
export const pluginRedoc = createPlugin<PluginRedoc>((options) => {
|
|
14
15
|
const { output = { path: 'docs.html' } } = options
|
|
15
16
|
|
|
16
17
|
return {
|
|
@@ -19,13 +20,25 @@ export const pluginRedoc = definePlugin<PluginRedoc>((options) => {
|
|
|
19
20
|
output,
|
|
20
21
|
name: trimExtName(output.path),
|
|
21
22
|
},
|
|
22
|
-
pre: [pluginOasName],
|
|
23
23
|
async install() {
|
|
24
|
-
const
|
|
25
|
-
|
|
24
|
+
const adapter = this.adapter
|
|
25
|
+
|
|
26
|
+
if (adapter?.name !== adapterOasName) {
|
|
27
|
+
throw new Error(
|
|
28
|
+
`[${pluginRedocName}] plugin-redoc requires the OpenAPI adapter. Make sure you are using adapterOas (e.g. \`adapter: adapterOas()\`) in your Kubb config.`,
|
|
29
|
+
)
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
const document = (adapter as Adapter<AdapterOas>).document
|
|
33
|
+
|
|
34
|
+
if (!document) {
|
|
35
|
+
throw new Error(
|
|
36
|
+
`[${pluginRedocName}] No OpenAPI document found. The adapterOas did not produce a document — ensure the adapter has run before this plugin.`,
|
|
37
|
+
)
|
|
38
|
+
}
|
|
26
39
|
|
|
27
40
|
const root = path.resolve(this.config.root, this.config.output.path)
|
|
28
|
-
const pageHTML = await getPageHTML(
|
|
41
|
+
const pageHTML = await getPageHTML(document)
|
|
29
42
|
|
|
30
43
|
await this.addFile({
|
|
31
44
|
baseName: 'docs.html',
|
package/src/redoc.tsx
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import fs from 'node:fs'
|
|
2
2
|
import path from 'node:path'
|
|
3
3
|
import { fileURLToPath } from 'node:url'
|
|
4
|
-
import type {
|
|
4
|
+
import type { AdapterOas } from '@kubb/adapter-oas'
|
|
5
5
|
import pkg from 'handlebars'
|
|
6
6
|
|
|
7
7
|
const __filename = fileURLToPath(import.meta.url)
|
|
@@ -13,7 +13,7 @@ type BuildDocsOptions = {
|
|
|
13
13
|
templateOptions?: any
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
export async function getPageHTML(api:
|
|
16
|
+
export async function getPageHTML(api: AdapterOas['document'], { title, disableGoogleFont, templateOptions }: BuildDocsOptions = {}) {
|
|
17
17
|
const templateFileName = path.join(__dirname, '../static/redoc.hbs')
|
|
18
18
|
const template = pkg.compile(fs.readFileSync(templateFileName).toString())
|
|
19
19
|
return template({
|
package/src/types.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import type { Output, PluginFactoryOptions } from '@kubb/core'
|
|
2
|
-
import type { Oas } from '@kubb/oas'
|
|
3
2
|
|
|
4
3
|
export type Options = {
|
|
5
4
|
output?: {
|
|
@@ -12,7 +11,8 @@ export type Options = {
|
|
|
12
11
|
}
|
|
13
12
|
|
|
14
13
|
type ResolveOptions = {
|
|
15
|
-
output: Output<
|
|
14
|
+
output: Output<never>
|
|
15
|
+
name: string
|
|
16
16
|
}
|
|
17
17
|
|
|
18
18
|
export type PluginRedoc = PluginFactoryOptions<'plugin-redoc', Options, ResolveOptions, never>
|