cc.systemEvent.on无法监听键盘事件

版本:1.5.1
typescript
用cc.systemEvent.on(cc.SystemEvent.EventType.KEY_DOW)时,编辑器提示
file: ‘file:///Users/Vergil-Sparda/cocos/start_project/assets/scripts/Player.ts’
severity: ‘错误’
message: ‘Argument of type ‘EventType’ is not assignable to parameter of type ‘string’.’
at: ‘41,27’
source: ‘ts’

改下create.d.ts文件关于这个cc.systemEvent.on事件类型的定义,改成int|string就行了,只是个定义的问题

谢谢了