export type Env = 'desktop' | 'mobile' | 'tablet'; /** * common used data sets in sociossports */ export interface ISociosImage { crop_small: string; thumb_large: string; } export interface ISociosName { full?: string; name?: string; official?: string; short?: string; sort?: string; } export interface ISociosState { current: string; meta: string[]; } export interface IPosition { top: number; left: number; bottom: number; right: number; } /** * Seconds and MilSeconds so its easier to identify * @deprecated Just make sure the variable name has milSec or sec in its name */ export type Seconds = number; export type MilSeconds = number;