Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * ElementContentEditable
10 *
11 * @see https://dom.spec.whatwg.org/#interface-elementcontenteditable
12 *
13 * @property string $contentEditable
14 * @property string $enterKeyHint
15 * @property bool $isContentEditable
16 * @property string $inputMode
17 * @phan-forbid-undeclared-magic-properties
18 */
19interface ElementContentEditable {
20    /**
21     * @return string
22     */
23    public function getContentEditable(): string;
24
25    /**
26     * @param string $val
27     */
28    public function setContentEditable( string $val ): void;
29
30    /**
31     * @return string
32     */
33    public function getEnterKeyHint(): string;
34
35    /**
36     * @param string $val
37     */
38    public function setEnterKeyHint( string $val ): void;
39
40    /**
41     * @return bool
42     */
43    public function getIsContentEditable(): bool;
44
45    /**
46     * @return string
47     */
48    public function getInputMode(): string;
49
50    /**
51     * @param string $val
52     */
53    public function setInputMode( string $val ): void;
54
55}