react-native-week-schedule-1
Version:
31 lines • 797 B
TypeScript
import type { IColors } from "react-native-week-schedule-1";
interface IGrid {
cellWight: number;
cellHeight: number;
hours: string[];
weekDays: string[];
colors: IColors;
}
declare class Grid implements IGrid {
private _diff;
private _offset;
private _numberOfColumns;
private _hours;
private _weekDays;
private _colors;
get cellWight(): number;
get cellHeight(): number;
get hours(): string[];
set hours(value: string[]);
get weekDays(): string[];
set weekDays(value: string[]);
set diff(value: number);
set offset(value: number);
get colors(): IColors;
updateColors(value: {
[key in keyof IColors]?: string;
}): void;
}
export declare const grid: Grid;
export {};
//# sourceMappingURL=grid.d.ts.map