mirror of
https://github.com/quartz-community/search.git
synced 2026-07-22 02:50:25 +00:00
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.
8 lines
248 B
TypeScript
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 };
|