We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 160e849 commit bb0fc3dCopy full SHA for bb0fc3d
2 files changed
.eslintignore
turbo/generators/templates/plugin/src/index.ts.hbs
@@ -1,8 +1,9 @@
1
import type {
2
LoadContext,
3
- Plugin,
4
OptionValidationContext,
+ Plugin,
5
} from "@docusaurus/types";
6
+
7
import { Joi } from "@docusaurus/utils-validation";
8
9
export interface PluginOptions {
@@ -17,7 +18,7 @@ const pluginOptionsSchema = Joi.object({
17
18
19
export default async function {{ pluginNameCamel }}(
20
_: LoadContext,
- options: PluginOptions
21
+ _options: PluginOptions
22
): Promise<Plugin> {
23
return {
24
name: "@gracefullight/docusaurus-plugin-{{ pluginName }}",
0 commit comments