docs: Fix ITick annotations

pull/62/head
Varun Patil 2022-09-16 15:55:57 -07:00
parent f2e3a862b1
commit 8c213f0769
1 changed files with 3 additions and 3 deletions

View File

@ -80,11 +80,11 @@ export enum IRowType {
export type ITick = {
/** Day ID */
dayId: number;
/** Top row at this */
/** Number of ROWS above this (dynamic) */
top: number;
/** Static distance from top (for headers) */
/** Extra static distance from top (for headers) */
topS: number;
/** Count row distance from top (dynamic) */
/** Actual Y position calculated (C) */
topC: number;
/** Text if any (e.g. year) */
text?: string | number;