@tak-ps/node-cot
Version:
Lightweight JavaScript library for parsing and manipulating TAK messages
19 lines (18 loc) • 413 B
TypeScript
import CoT from '../cot.js';
export type DirectChatMember = {
uid: string;
callsign: string;
};
export type DirectChatInput = {
to: DirectChatMember;
from: DirectChatMember;
message: string;
parent?: string;
chatroom?: string;
groupOwner?: boolean;
messageId?: string;
id?: string;
};
export declare class DirectChat extends CoT {
constructor(chat: DirectChatInput);
}