feat: export `Options` type

pull/1005/head
Ryota Kameoka 3 years ago committed by Ryota Kameoka
parent b130c26cc1
commit 90cd31644e

@ -1,6 +1,6 @@
// core
export { DOMAPI, htmlDomApi } from "./htmldomapi";
export { init } from "./init";
export { init, Options } from "./init";
export { ThunkData, Thunk, ThunkFn, thunk } from "./thunk";
export { Key, VNode, VNodeData, vnode } from "./vnode";

@ -78,7 +78,7 @@ const hooks: Array<keyof Module> = [
];
// TODO Should `domApi` be put into this in the next major version bump?
type Options = {
export type Options = {
experimental?: {
fragments?: boolean;
};

Loading…
Cancel
Save