37 lines
1.1 KiB
TypeScript
37 lines
1.1 KiB
TypeScript
export const SO_POR_EQUIPO: Record<string, string[]> = {
|
|
"ESCRITORIO PC": [
|
|
"Windows 11",
|
|
"Windows 10",
|
|
"Windows 7/8",
|
|
"Windows XP/Vista",
|
|
"Linux",
|
|
],
|
|
"ESCRITORIO APPLE": [
|
|
"Mac OS (13 - Ventura, 14 - Sonoma)",
|
|
"Mac OS X (Mojave, Catalina, 11 - Big Sur, 12 - Monterrey)",
|
|
"Mac OS X (Yosemite, El Capitan, Sierra, High Sierra)",
|
|
"Mac OS X (Snow Leopard, Lion, Mountain Lion, Mavericks)",
|
|
],
|
|
"TABLETA ANDROID": [
|
|
"Windows 11",
|
|
"Windows 10",
|
|
"Windows 7/8",
|
|
"Windows XP/Vista",
|
|
"Chrome OS",
|
|
],
|
|
"TABLETA iPAD OS": [
|
|
"Mac OS (13 - Ventura, 14 - Sonoma)",
|
|
"Mac OS X (Mojave, Catalina, 11 - Big Sur, 12 - Monterrey)",
|
|
"Mac OS X (Yosemite, El Capitan, Sierra, High Sierra)",
|
|
"Mac OS X (Snow Leopard, Lion, Mountain Lion, Mavericks)",
|
|
],
|
|
SERVIDOR: [
|
|
"Linux (CentOS, Fedora, Ubuntu, Red Hat Enterprise, entre otros)",
|
|
"Unix (AIX, MAC OS Server, Solaris, entre otros)",
|
|
"Windows Server 2022/2023",
|
|
"Windows Server 2016/2019",
|
|
"Windows Server 2008/2012",
|
|
"Windows Server 2000/2003",
|
|
],
|
|
};
|