FarmBot/Farmbot-Web-App

View on GitHub
frontend/config/interfaces.ts

Summary

Maintainability
A
0 mins
Test Coverage
/** Payload of CHANGE_API_HOST */
export interface ChangeApiHost { host: string; }

/** Payload of CHANGE_API_PORT */
export interface ChangeApiPort { port: string; }

/** This is a subset of attributes found on window.location. */
export interface ConfigState {
  host: string;
  port: string;
}