export type osType = 'ios' | 'macos' | 'tvos' | 'watchos';
export type versionNumbers = {
    [versionNumber: string]: string[];
};
export type versionNames = {
    [key: string]: versionNumbers;
};
