mirror of
https://github.com/quartz-community/folder-page.git
synced 2026-07-22 02:50:24 +00:00
10 lines
291 B
TypeScript
10 lines
291 B
TypeScript
import { SortFn, QuartzComponent } from '@quartz-community/types';
|
|
|
|
interface FolderContentOptions {
|
|
showFolderCount: boolean;
|
|
showSubfolders: boolean;
|
|
sort?: SortFn;
|
|
}
|
|
declare const _default: (opts?: Partial<FolderContentOptions>) => QuartzComponent;
|
|
|
|
export { _default as _ };
|