@fibercom/routeros-api
Version:
Robust MikroTik RouterOS API client for Node.js and TypeScript
11 lines (10 loc) • 324 B
TypeScript
/**
* Generic structure representing a RouterOS response.
*
* Since the RouterOS API returns a flexible set of key-value pairs,
* this interface captures any possible properties dynamically.
* It's typically parsed from lines like `=key=value`.
*/
export interface IRosGenericResponse {
[propName: string]: any;
}