/* * Copyright 2026 Hypergiant Galactic Systems Inc. All rights reserved. * This file is licensed to you under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. You may obtain a copy * of the License at https://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS * OF ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ import { GanttHoursTimescale, GanttMinutesTimescale, GanttTimescale } from "./types.js"; //#region src/components/gantt/constants.d.ts declare const MS_PER_MINUTE: number; declare const MS_PER_HOUR: number; declare const HOURS_MAPPING: Record; declare const MINUTES_MAPPING: Record; declare const TIMESCALE_MAPPING: Record; declare const TIMELINE_CHUNK_WIDTH_PX = 80; declare const BUFFERED_CHUNK_COUNT = 4; declare const GANTT_ROW_HEIGHT_PX = 40; declare const GANTT_ROW_ELEMENT_HEIGHT_PX = 30; declare const GANTT_CONTAINER_TOP_PX = 12; declare const ROW_VIRTUALIZATION_OVERSCAN = 1; declare const GANTT_HEADER_HEIGHT_PX = 64; declare const TIMESCALE_OPTIONS: GanttTimescale[]; //#endregion export { BUFFERED_CHUNK_COUNT, GANTT_CONTAINER_TOP_PX, GANTT_HEADER_HEIGHT_PX, GANTT_ROW_ELEMENT_HEIGHT_PX, GANTT_ROW_HEIGHT_PX, HOURS_MAPPING, MINUTES_MAPPING, MS_PER_HOUR, MS_PER_MINUTE, ROW_VIRTUALIZATION_OVERSCAN, TIMELINE_CHUNK_WIDTH_PX, TIMESCALE_MAPPING, TIMESCALE_OPTIONS }; //# sourceMappingURL=constants.d.ts.map