6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
|
import {type DateWrapper} from "../date/date.js";
|
||
|
|
||
|
export type SharedProps = {
|
||
|
today: DateWrapper;
|
||
|
};
|