import { registerPlugin, getPluginConfig } from '@scullyio/scully'; export const myPlugin = 'myPlugin'; const myFunctionPlugin = async (html: string): Promise => { return html; }; const validator = async () => []; registerPlugin('render', myPlugin, myFunctionPlugin, validator);