aboutsummaryrefslogtreecommitdiff
path: root/src/demo/Window/types.ts
blob: 9e18fe3b005bd9cb52c1ac9034aa297b8ac1220c (plain)
1
2
3
4
5
6
7
8
9
10
11
export interface SurfaceSize {
  height: string;
  width?: string;
}

export interface SurfacePosition {
  bottom: string;
  left?: string;
  right?: string;
}