UNPKG

react-native

Version:

A framework for building native apps using React

39 lines (29 loc) 793 B
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict * @format */ /** * This module implements the `CustomEvent` interface from the DOM. * See https://dom.spec.whatwg.org/#interface-customevent. */ // flowlint unsafe-getters-setters:off import type {EventInit} from './Event'; import Event from './Event'; export interface CustomEventInit extends EventInit { +detail?: mixed; } export default class CustomEvent extends Event { _detail: mixed; constructor(type: string, options?: ?CustomEventInit) { super(type, options); this._detail = options?.detail; } get detail(): mixed { return this._detail; } }