Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
13 lines
493 B
Plaintext
13 lines
493 B
Plaintext
import { ElementContainer } from '../element-container';
|
|
import { Context } from '../../core/context';
|
|
export declare const CHECKBOX = "checkbox";
|
|
export declare const RADIO = "radio";
|
|
export declare const PASSWORD = "password";
|
|
export declare const INPUT_COLOR = 707406591;
|
|
export declare class InputElementContainer extends ElementContainer {
|
|
readonly type: string;
|
|
readonly checked: boolean;
|
|
readonly value: string;
|
|
constructor(context: Context, input: HTMLInputElement);
|
|
}
|