sanity-plugin-markdown 8.0.0 → 8.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { StringDefinition, StringInputProps } from "sanity";
|
|
1
|
+
import { Plugin, StringDefinition, StringInputProps } from "sanity";
|
|
3
2
|
import { SimpleMDEReactProps } from "react-simplemde-editor";
|
|
4
3
|
import { Options } from "easymde";
|
|
5
4
|
/**
|
|
@@ -157,6 +156,6 @@ interface MarkdownConfig {
|
|
|
157
156
|
*/
|
|
158
157
|
input?: (props: StringInputProps) => React.ReactElement;
|
|
159
158
|
}
|
|
160
|
-
declare const markdownSchema:
|
|
159
|
+
declare const markdownSchema: Plugin<MarkdownConfig | void>;
|
|
161
160
|
export { defaultMdeTools as a, MarkdownInputProps as i, markdownSchema as n, MarkdownDefinition as o, MarkdownInput as r, markdownSchemaType as s, MarkdownConfig as t };
|
|
162
161
|
//# sourceMappingURL=commonExports.d.ts.map
|