search/dist/index.d.ts
saberzero1 5f2df462c9
chore: commit dist/ and remove prepare script
Pre-built output is now committed to the repository so that
Quartz can skip the build step during plugin installation.
The prepare script is removed to prevent redundant builds
when installing from npm/git.
2026-03-14 22:01:25 +01:00

8 lines
248 B
TypeScript

import { QuartzComponent } from '@quartz-community/types';
interface SearchOptions {
enablePreview: boolean;
}
declare const _default: (userOpts?: Partial<SearchOptions>) => QuartzComponent;
export { _default as Search, type SearchOptions };