Farmbot-Web-App/src/config/interfaces.ts

12 lines
299 B
TypeScript

/** 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;
}