bicstone / gatsby-plugin-fix-fouc

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
6 months ago10 months old
Documentation comment not found for arrow function onRenderBody
 5
 6import type { RenderBodyArgs } from "gatsby";
 7
 8export const onRenderBody = ( 9  { setHeadComponents, setBodyAttributes }: RenderBodyArgs,
10  pluginOptions: GatsbyPluginFixFoucOptions,
11): void => {
Documentation comment not found for arrow function onInitialClientRender
 3
 4import type { BrowserPluginArgs } from "gatsby";
 5
 6export const onInitialClientRender = ( 7  _: BrowserPluginArgs,
 8  pluginOptions: GatsbyPluginFixFoucOptions,
 9): void => {
Documentation comment not found for arrow function pluginOptionsSchema
 1import type { GatsbyNode } from "gatsby";
 2import type { GatsbyPluginFixFoucOptions } from "./";
 3
 4export const pluginOptionsSchema: Required<GatsbyNode>["pluginOptionsSchema"] = 5  ({ Joi }) => {
 6    const schema: Record<keyof GatsbyPluginFixFoucOptions, any> = {
 7      attributeName: Joi.string(),