@mralfarrakhan/svork 0.6.6 → 0.7.1-alpha
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.mts +10 -1
- package/dist/index.mjs +8947 -36
- package/package.json +9 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { PreprocessorGroup } from "svelte/compiler";
|
|
2
|
+
import { CompileArgs } from "@myriaddreamin/typst-ts-node-compiler";
|
|
2
3
|
|
|
3
4
|
//#region node_modules/@types/unist/index.d.ts
|
|
4
5
|
// ## Interfaces
|
|
@@ -3287,4 +3288,12 @@ type SvelteMarkdownOptions = {
|
|
|
3287
3288
|
};
|
|
3288
3289
|
declare const svelteMarkdown: (options?: SvelteMarkdownOptions) => PreprocessorGroup;
|
|
3289
3290
|
//#endregion
|
|
3290
|
-
|
|
3291
|
+
//#region src/typst.d.ts
|
|
3292
|
+
type SvelteTypstOptions = {
|
|
3293
|
+
extensions?: string[];
|
|
3294
|
+
rehypePlugins?: PluggableList;
|
|
3295
|
+
compileArgs?: CompileArgs;
|
|
3296
|
+
};
|
|
3297
|
+
declare const svelteTypst: (options?: SvelteTypstOptions) => PreprocessorGroup;
|
|
3298
|
+
//#endregion
|
|
3299
|
+
export { SvelteMarkdownOptions, SvelteTypstOptions, svelteMarkdown, svelteTypst };
|