File size: 282 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
import type { SlatePlugin } from '../types/SlatePlugin';
export const HtmlToSlate = ({ plugins }: { plugins: SlatePlugin[] }) => {
return async (htmlString: string) => {
const impl = (await import('./HtmlToSlate')).default;
return impl({ plugins })(htmlString);
};
};
|