mirror of
https://github.com/quartz-community/utils.git
synced 2026-07-22 02:50:27 +00:00
6 lines
231 B
TypeScript
6 lines
231 B
TypeScript
import { SortFn, QuartzPluginData } from "@quartz-community/types";
|
|
|
|
declare function getDate(data: QuartzPluginData): Date | undefined;
|
|
declare function byDateAndAlphabetical(): SortFn;
|
|
|
|
export { byDateAndAlphabetical, getDate };
|