Sha256: ec2ac33f4ba457530527672b06d12bf7e9a56e0b0195e03d567b2c5356d13087
Contents?: true
Size: 516 Bytes
Versions: 78
Compression:
Stored size: 516 Bytes
Contents
class Puppeteer::Keyboard # * @typedef {Object} KeyDescription # * @property {number} keyCode # * @property {string} key # * @property {string} text # * @property {string} code # * @property {number} location class KeyDescription def initialize(key_code: nil, key: nil, text: nil, code: nil, location: nil) @key_code = key_code @key = key @text = text @code = code @location = location end attr_reader :key_code, :key, :text, :code, :location end end
Version data entries
78 entries across 78 versions & 1 rubygems