mirror of
https://github.com/fleetdm/fleet
synced 2026-05-20 23:48:52 +00:00
18 lines
453 B
TypeScript
18 lines
453 B
TypeScript
export interface IOperatingSystemVersion {
|
|
os_id: number;
|
|
name: string;
|
|
name_only: string;
|
|
version: string;
|
|
platform: string;
|
|
hosts_count: number;
|
|
}
|
|
|
|
export const OS_VENDOR_BY_PLATFORM: Record<string, string> = {
|
|
darwin: "Apple",
|
|
windows: "Microsoft",
|
|
} as const;
|
|
|
|
export const OS_END_OF_LIFE_LINK_BY_PLATFORM: Record<string, string> = {
|
|
darwin: "https://endoflife.date/macos",
|
|
windows: "https://endoflife.date/windows",
|
|
} as const;
|