@slidev/types 0.49.22 → 0.49.24
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 +5 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -550,7 +550,6 @@ interface SlideInfo extends SlideInfoBase {
|
|
|
550
550
|
* The source slide where the content is from
|
|
551
551
|
*/
|
|
552
552
|
source: SourceSlideInfo;
|
|
553
|
-
snippetsUsed?: LoadedSnippets;
|
|
554
553
|
noteHTML?: string;
|
|
555
554
|
}
|
|
556
555
|
/**
|
|
@@ -608,7 +607,10 @@ interface SlidevData {
|
|
|
608
607
|
features: SlidevDetectedFeatures;
|
|
609
608
|
themeMeta?: SlidevThemeMeta;
|
|
610
609
|
markdownFiles: Record<string, SlidevMarkdown>;
|
|
611
|
-
|
|
610
|
+
/**
|
|
611
|
+
* From watched files to indexes of slides that must be reloaded regardless of the loaded content
|
|
612
|
+
*/
|
|
613
|
+
watchFiles: Record<string, Set<number>>;
|
|
612
614
|
}
|
|
613
615
|
interface SlidevPreparserExtension {
|
|
614
616
|
name?: string;
|
|
@@ -631,7 +633,6 @@ interface SlideRoute {
|
|
|
631
633
|
*/
|
|
632
634
|
component: Component;
|
|
633
635
|
}
|
|
634
|
-
type LoadedSnippets = Record<string, string>;
|
|
635
636
|
|
|
636
637
|
interface CodeRunnerContext {
|
|
637
638
|
/**
|
|
@@ -946,4 +947,4 @@ interface ClicksContext {
|
|
|
946
947
|
readonly total: number;
|
|
947
948
|
}
|
|
948
949
|
|
|
949
|
-
export { type AppContext, type AppSetup, type BuildArgs, type BuiltinSlideTransition, type ClicksContext, type ClicksElement, type ClicksInfo, type CodeRunner, type CodeRunnerContext, type CodeRunnerOutput, type CodeRunnerOutputDom, type CodeRunnerOutputError, type CodeRunnerOutputHtml, type CodeRunnerOutputText, type CodeRunnerOutputTextArray, type CodeRunnerOutputs, type CodeRunnerProviders, type CodeRunnersSetup, type CommonArgs, type ContextMenuItem, type ContextMenuSetup, type DrawingsOptions, type ExportArgs, type FontOptions, type Frontmatter, type FrontmatterStyle, type Headmatter, type HeadmatterConfig, type KatexSetup, type
|
|
950
|
+
export { type AppContext, type AppSetup, type BuildArgs, type BuiltinSlideTransition, type ClicksContext, type ClicksElement, type ClicksInfo, type CodeRunner, type CodeRunnerContext, type CodeRunnerOutput, type CodeRunnerOutputDom, type CodeRunnerOutputError, type CodeRunnerOutputHtml, type CodeRunnerOutputText, type CodeRunnerOutputTextArray, type CodeRunnerOutputs, type CodeRunnerProviders, type CodeRunnersSetup, type CommonArgs, type ContextMenuItem, type ContextMenuSetup, type DrawingsOptions, type ExportArgs, type FontOptions, type Frontmatter, type FrontmatterStyle, type Headmatter, type HeadmatterConfig, type KatexSetup, type MarkdownTransformContext, type MarkdownTransformer, type MermaidSetup, type MonacoSetup, type MonacoSetupReturn, type NavOperations, type NormalizedAtValue, type NormalizedRangeClickValue, type NormalizedSingleClickValue, type PreparserExtensionLoader, type PreparserSetup, type RawAtValue, type RawRangeAtValue, type RawSingleAtValue, type RenderContext, type ResolvedDrawingsOptions, type ResolvedExportOptions, type ResolvedFontOptions, type ResolvedSlidevConfigSub, type ResolvedSlidevOptions, type ResolvedSlidevUtils, type RootSetup, type RootsInfo, type RoutesSetup, type ShikiContext, type ShikiSetup, type ShikiSetupReturn, type ShortcutOptions, type ShortcutsSetup, type SlideInfo, type SlideInfoBase, type SlidePatch, type SlideRoute, type SlidevConfig, type SlidevData, type SlidevDetectedFeatures, type SlidevEntryOptions, type SlidevMarkdown, type SlidevPluginOptions, type SlidevPreparserExtension, type SlidevServerOptions, type SlidevThemeConfig, type SlidevThemeMeta, type SourceSlideInfo, type TocItem, type TransformersSetup, type TransformersSetupReturn, type TransitionGroupProps, type TransitionOptions, type UnoSetup, defineAppSetup, defineCodeRunnersSetup, defineContextMenuSetup, defineKatexSetup, defineMermaidSetup, defineMonacoSetup, definePreparserSetup, defineRootSetup, defineRoutesSetup, defineShikiSetup, defineShortcutsSetup, defineTransformersSetup, defineUnoSetup };
|