15 lines
352 B
TypeScript
15 lines
352 B
TypeScript
export interface CommonGridStyle {
|
|
[key: string]: string;
|
|
}
|
|
export interface CommonGridCachedStyle {
|
|
width: number;
|
|
height: number;
|
|
style: CommonGridStyle;
|
|
}
|
|
export interface GridColumnCachedStyle extends CommonGridCachedStyle {
|
|
left: number;
|
|
}
|
|
export interface GridRowCachedStyle extends CommonGridCachedStyle {
|
|
top: number;
|
|
}
|