UNPKG

node-red-contrib-tak-registration

Version:

A Node-RED node to register to TAK and to help wrap files as datapackages to send to TAK

34 lines (25 loc) 691 B
/// <reference types="node" /> // See https://github.com/nodejs/undici/issues/1740 export type DOMException = typeof globalThis extends { DOMException: infer T } ? T : any export interface EventInit { bubbles?: boolean cancelable?: boolean composed?: boolean } export interface EventListenerOptions { capture?: boolean } export interface AddEventListenerOptions extends EventListenerOptions { once?: boolean passive?: boolean signal?: AbortSignal } export type EventListenerOrEventListenerObject = EventListener | EventListenerObject export interface EventListenerObject { handleEvent (object: Event): void } export interface EventListener { (evt: Event): void }