UNPKG

react-native

Version:

A framework for building native apps using React

53 lines (41 loc) 1.16 kB
/** * 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 `CloseEvent` interface from `WebSocket`. * See https://websockets.spec.whatwg.org/#the-closeevent-interface. */ // flowlint unsafe-getters-setters:off import type {EventInit} from '../../dom/events/Event'; import Event from '../../dom/events/Event'; export interface CloseEventInit extends EventInit { +wasClean?: boolean; +code?: number; +reason?: string; } export default class CloseEvent extends Event { _wasClean: boolean; _code: number; _reason: string; constructor(type: string, options?: ?CloseEventInit) { super(type, options); this._wasClean = Boolean(options?.wasClean); this._code = Number(options?.code) || 0; this._reason = options?.reason != null ? String(options.reason) : ''; } get wasClean(): boolean { return this._wasClean; } get code(): number { return this._code; } get reason(): string { return this._reason; } }