Skip to content

Commit

Permalink
Add missing props to ChartArea type (#9123)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrimmer committed May 19, 2021
1 parent 939ffe0 commit 8c5d6be
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions types/geometric.d.ts
@@ -1,11 +1,13 @@
export interface ChartArea {
top: number;
left: number;
right: number;
bottom: number;
top: number;
left: number;
right: number;
bottom: number;
width: number;
height: number;
}

export interface Point {
x: number;
y: number;
x: number;
y: number;
}

0 comments on commit 8c5d6be

Please sign in to comment.