Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
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);
};
};