UNPKG

o3-dapi-ont

Version:
20 lines (17 loc) 363 B
import { sendMessage } from '../messaging'; import { Command } from '../constants'; interface Provider { name: string; version: string; compatibility: string[]; website: string; extra: { theme: string, currency: string, }; } export function getProvider(): Promise<Provider> { return sendMessage({ command: Command.getProvider, }); }