1export class Constants { 2 static readonly X_COMPONENT_SURFACE_WIDTH = 1920 3 static readonly X_COMPONENT_SURFACE_HEIGHT = 1080 4 static readonly X_COMPONENT_BORDER_WIDTH = 0.5 5 static readonly CAPTURE_BUTTON_BORDER_WIDTH = 3 6 static readonly CAPTURE_BUTTON_BORDER_RADIUS = 70 7 static readonly CAPTURE_BUTTON_COLUMN_MARGIN = 24 8 static readonly CAPTURE_BUTTON_COLUMN_PADDING = 24 9 static readonly BACK_ICON_SIZE = 24 10 static readonly BACK_ICON_MARGIN = 24 11 static readonly FULL_PERCENT: string = '100%' 12 static readonly EIGHTY_FIVE_PERCENT: string = '85%' 13 static readonly EIGHTY_PERCENT: string = '80%' 14 static readonly SEVENTY_FIVE_PERCENT: string = '75%' 15 static readonly SEVENTY_PERCENT: string = '70%' 16 static readonly FORTY_PERCENT: string = '40%' 17 static readonly THIRTY_PERCENT: string = '30%' 18 static readonly FIFTEEN_PERCENT: string = '15%' 19 static readonly TEN_PERCENT: string = '10%' 20 static readonly ZERO_PERCENT: string = '0%' 21 static readonly TEXT_BORDER_RADIUS: number = 14 22 static readonly COLUMN_SPACE_24: number = 24 23}