mirror of
https://github.com/quantum5/qcal.git
synced 2025-08-02 22:08:13 -04:00
6 lines
131 B
TypeScript
6 lines
131 B
TypeScript
|
export type DateJumperProps = {
|
||
|
minJDN: number;
|
||
|
maxJDN: number;
|
||
|
todayJDN: number;
|
||
|
onJump: (jdn: number) => void;
|
||
|
};
|