mirror of
https://gitlab.com/novaloop-oss/angular/localization.git
synced 2025-12-06 04:51:52 +00:00
13 lines
294 B
TypeScript
13 lines
294 B
TypeScript
|
|
import { registerPlugin, getPluginConfig } from '@scullyio/scully';
|
|
|
|
export const myPlugin = 'myPlugin';
|
|
|
|
const myFunctionPlugin = async (html: string): Promise<string> => {
|
|
return html;
|
|
};
|
|
|
|
const validator = async () => [];
|
|
|
|
registerPlugin('render', myPlugin, myFunctionPlugin, validator);
|