owltide/css.d.ts
Hornwitser 484c27ece2 Minimally functional schedule rendering
Add timetable and event listing based on transforming a simple input
data structure.
2025-02-26 22:53:56 +01:00

8 lines
150 B
TypeScript

import type * as CSS from 'csstype';
// typing for custom variables.
declare module 'csstype' {
interface Properties {
"--minutes"?: number,
}
}