SSG Plugin afterGenerateHook signature mismatch
docs/helpers/ssg at https://hono.dev/docs/helpers/ssg
export type AfterGenerateHook = (result: ToSSGResult) => void | Promise<void>afterGenerateHook: (result, fsModule, options) => { ... }The documentation example shows the afterGenerateHook receiving three parameters (result, fsModule, options), but the actual type definition only accepts one parameter (result). A developer following the docs example would pass incorrect arguments.
Update the documentation example to remove the fsModule and options parameters from the afterGenerateHook signature, or update the code type definition to match the documented signature if those parameters are actually needed.