@readme/markdown 9.3.2 → 9.4.0
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.
- package/dist/489.node.js +136 -44
- package/dist/489.node.js.map +1 -1
- package/dist/lib/compile.d.ts +1 -1
- package/dist/lib/run.d.ts +1 -1
- package/dist/main.js +59 -64
- package/dist/main.node.js +53 -57
- package/dist/main.node.js.map +1 -1
- package/package.json +1 -1
package/dist/lib/compile.d.ts
CHANGED
|
@@ -5,5 +5,5 @@ export type CompileOpts = CompileOptions & {
|
|
|
5
5
|
missingComponents?: 'ignore' | 'throw';
|
|
6
6
|
useTailwind?: boolean;
|
|
7
7
|
};
|
|
8
|
-
declare const compile: (text: string, { components, missingComponents, copyButtons, useTailwind, ...opts }?: CompileOpts) =>
|
|
8
|
+
declare const compile: (text: string, { components, missingComponents, copyButtons, useTailwind, ...opts }?: CompileOpts) => string;
|
|
9
9
|
export default compile;
|
package/dist/lib/run.d.ts
CHANGED
|
@@ -11,5 +11,5 @@ export type RunOpts = Omit<RunOptions, 'Fragment'> & {
|
|
|
11
11
|
theme?: 'dark' | 'light';
|
|
12
12
|
variables?: Variables;
|
|
13
13
|
};
|
|
14
|
-
declare const run: (string: string, _opts?: RunOpts) =>
|
|
14
|
+
declare const run: (string: string, _opts?: RunOpts) => RMDXModule;
|
|
15
15
|
export default run;
|