note-properties/dist/components/index.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

8 lines
300 B
TypeScript

import { QuartzComponent } from '@quartz-community/types';
interface NotePropertiesComponentOptions {
collapsed?: boolean;
}
declare const _default: (opts?: NotePropertiesComponentOptions) => QuartzComponent;
export { _default as NotePropertiesComponent, type NotePropertiesComponentOptions };