export type MenuManifest = { name: string; link: string }[]; export interface IPluginBuilder { build(): Plugin; } export type Plugin = (builderContext: { outputDirectory: string; menuManifest: MenuManifest; }) => void | Promise;