UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

19 lines (18 loc) 286 B
export class DirectusTransport { res; onerror; onmessage; onclose; constructor(res) { this.res = res; } async start() { return; } async send(message) { this.res.json(message); } async close() { return; } }