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.
8 lines
300 B
TypeScript
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 };
|