open-critic-node
Version:
A NodeJS Wrapper for the Open Critic API
19 lines (18 loc) • 449 B
text/typescript
/**
* Defines all of the possible platforms that OpenCritic supports.
*/
export enum PlatformType {
PC = "pc",
MS_XBOX_XS = "xbxs",
SONY_PLAYSTATION_5 = "ps5",
NINTENDO_SWITCH = "switch",
GOOGLE_STADIA = "stadia",
MS_XBOX_ONE = "xb1",
SONY_PLAYSTATION_4 = "ps4",
FB_OCULUS_RIFT = "oculus",
SONY_PLAYSTATION_VR = "psvr",
HTC_VIVE = "vive",
NINTENDO_WII_U = "wii-u",
NINTENDO_3DS = "3ds",
SONY_PLAYSTATION_VITA = "vita",
}