@batijs/core 0.0.510 → 0.0.512
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/index.d.ts +2 -2
- package/dist/index.js +2 -2
- package/package.json +2 -2
- package/dist/jiti-W5Y5D52V.js +0 -483
- package/dist/src-UAKFXUB2.js +0 -9
package/dist/index.d.ts
CHANGED
|
@@ -67,7 +67,7 @@ type MarkdownOptions = {
|
|
|
67
67
|
position?: MarkdownPosition;
|
|
68
68
|
wrapper?: WrapperObject;
|
|
69
69
|
};
|
|
70
|
-
type
|
|
70
|
+
type ClassConfig = {
|
|
71
71
|
defaults?: MarkdownOptions;
|
|
72
72
|
};
|
|
73
73
|
type Info = {
|
|
@@ -82,7 +82,7 @@ declare class MarkdownV2 implements StringTransformer {
|
|
|
82
82
|
private tree;
|
|
83
83
|
private contents;
|
|
84
84
|
private config;
|
|
85
|
-
constructor(tree: Root, config?:
|
|
85
|
+
constructor(tree: Root, config?: ClassConfig);
|
|
86
86
|
addMarkdownFeature(markdown: string | ZoneHandler, flag: Flags, options?: MarkdownOptions): void;
|
|
87
87
|
addMarkdown(markdown: string | ZoneHandler, options?: MarkdownOptions): void;
|
|
88
88
|
finalize(): string;
|