note-properties/dist/types.d.ts
saberzero1 2d29fc5c07
fix: add build-time deps for DTS generation
Peer dependencies needed at build time for TypeScript declaration file
generation were missing from devDependencies. Without them, the DTS build
fails silently, producing no index.d.ts.
2026-03-14 22:26:14 +01:00

18 lines
1.2 KiB
TypeScript

export { BuildCtx, CSSResource, ChangeEvent, FilePath, FullSlug, JSResource, PageGenerator, PageMatcher, ProcessedContent, QuartzEmitterPlugin, QuartzEmitterPluginInstance, QuartzFilterPlugin, QuartzFilterPluginInstance, QuartzPageTypePlugin, QuartzPageTypePluginInstance, QuartzPluginData, QuartzTransformerPlugin, QuartzTransformerPluginInstance, StaticResources, VirtualPage } from '@quartz-community/types';
interface NotePropertiesOptions {
/** Include all frontmatter properties in the display. When false, only `includedProperties` are shown. */
includeAll: boolean;
/** Properties to include when `includeAll` is false. Ignored when `includeAll` is true. */
includedProperties: string[];
/** Properties to exclude from display. Applied after inclusion logic. */
excludedProperties: string[];
/** Hide the visual properties panel while still processing frontmatter and resolving links. */
hidePropertiesView: boolean;
/** Frontmatter delimiters. Defaults to "---". */
delimiters: string | [string, string];
/** Frontmatter language. Defaults to "yaml". */
language: "yaml" | "toml";
}
export type { NotePropertiesOptions };