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; }