+9
@@ -0,0 +1,9 @@
|
||||
import type { Plugin } from "unified";
|
||||
import type * as mdast from "../models/mdast";
|
||||
import type * as slate from "../models/slate";
|
||||
import { OverridedMdastBuilders } from "../transformers/mdast-to-slate";
|
||||
export type Options = {
|
||||
overrides?: OverridedMdastBuilders;
|
||||
};
|
||||
declare const plugin: Plugin<[Options?], mdast.Root, slate.Node[]>;
|
||||
export default plugin;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import type { Plugin } from "unified";
|
||||
declare const plugin: Plugin<[]>;
|
||||
export default plugin;
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
import type { Plugin } from "unified";
|
||||
import type * as mdast from "../models/mdast";
|
||||
import type * as slate from "../models/slate";
|
||||
import { OverridedSlateBuilders } from "../transformers/slate-to-mdast";
|
||||
export type Options = {
|
||||
overrides?: OverridedSlateBuilders;
|
||||
};
|
||||
declare const plugin: Plugin<[Options?], slate.Node, mdast.Root>;
|
||||
export default plugin;
|
||||
+3
@@ -0,0 +1,3 @@
|
||||
import type { Plugin } from "unified";
|
||||
declare const plugin: Plugin<[]>;
|
||||
export default plugin;
|
||||
Reference in New Issue
Block a user