@types/dom-inputevent
TypeScript icon, indicating that this package has built-in type declarations

1.0.9 • Public • Published

Installation

npm install --save @types/dom-inputevent

Summary

This package contains type definitions for dom-inputevent (https://w3c.github.io/uievents/#interface-inputevent).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/dom-inputevent.

index.d.ts

interface InputEventInit extends UIEventInit {
    data?: string | null | undefined;
    isComposing?: boolean | undefined;
}

interface InputEvent extends UIEvent {
    readonly data: string | null;
    readonly isComposing: boolean;
}
declare var InputEvent: {
    prototype: InputEvent;
    new(type: string, eventInitDict?: InputEventInit): InputEvent;
};

Additional Details

  • Last updated: Mon, 06 Nov 2023 22:41:05 GMT
  • Dependencies: none

Credits

These definitions were written by Steven Sinatra.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/dom-inputevent

Weekly Downloads

6,101

Version

1.0.9

License

MIT

Unpacked Size

3.34 kB

Total Files

5

Last publish

Collaborators

  • types