UNPKG

@intuitionrobotics/thunderstorm

Version:
15 lines (14 loc) 416 B
import { Module } from "@intuitionrobotics/ts-common"; type Config = { appName: string; themeColor: string; }; declare class ThunderstormModule_Class extends Module<Config> { constructor(); init(): void; setAppName(appName: string): void; setChromeThemeColor(themeColor: string): void; getAppName(): string; } export declare const ThunderstormModule: ThunderstormModule_Class; export {};