mirror of
https://github.com/nocodb/nocodb.git
synced 2026-05-01 03:36:40 +00:00
25 lines
491 B
TypeScript
25 lines
491 B
TypeScript
import type dayjs from 'dayjs'
|
|
|
|
export function getVisibleDates(..._args: any[]): dayjs.Dayjs[] {
|
|
return []
|
|
}
|
|
|
|
export function getBarPosition(..._args: any[]): number {
|
|
return 0
|
|
}
|
|
|
|
export function getBarWidth(..._args: any[]): number {
|
|
return 0
|
|
}
|
|
|
|
export function isToday(..._args: any[]): boolean {
|
|
return false
|
|
}
|
|
|
|
export function isWeekend(..._args: any[]): boolean {
|
|
return false
|
|
}
|
|
|
|
export const TIMELINE_GROUP_SIDEBAR_WIDTH = 200
|
|
export const TIMELINE_GROUP_HEADER_HEIGHT = 32
|