mirror of
https://github.com/quartz-community/note-properties.git
synced 2026-07-22 02:50:26 +00:00
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.
18 lines
1.2 KiB
TypeScript
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 };
|