Computer
이 콘텐츠는 아직 번역되지 않았습니다.
type Computer = Expand<ComputerBase & Record<Exclude<ActionNames, keyof ComputerBase>, never>>;
Interface representing a fully implemented computer environment.
Combines the base operations with a constraint that no extra
action names beyond those in ComputerAction
are present.