Canvas: Quick positioning (#48992)

Co-authored-by: nmarrs <nathanielmarrs@gmail.com>
This commit is contained in:
Adela Almasan
2022-05-23 15:31:39 -07:00
committed by GitHub
co-authored by nmarrs
parent d7c65d3323
commit b1ba0bc7b0
6 changed files with 176 additions and 16 deletions
+9
View File
@@ -49,3 +49,12 @@ export interface LineConfig {
color?: ColorDimensionConfig;
width?: number;
}
export enum QuickPlacement {
Top = 'top',
Bottom = 'bottom',
Left = 'left',
Right = 'right',
HorizontalCenter = 'hcenter',
VerticalCenter = 'vcenter',
}