PHP WebShell

Текущая директория: /usr/lib/node_modules/bitgo/node_modules/react-native/src/private/webapis/dom/events

Просмотр файла: CustomEvent.js

/**
 * 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;
  }
}

Выполнить команду


Для локальной разработки. Не используйте в интернете!