/**
 * An object representing supported platforms.
 *
 * - `DARWIN`: macOS platform identifier.
 * - `LINUX`: Linux platform identifier.
 * - `WIN32`: Windows platform identifier.
 */
export const SUPPORTED_PLATFORMS = {
  DARWIN: "darwin",
  LINUX: "linux",
  WIN32: "win32",
};
