magnus-cli
Version:
Command line tool to pull and push source code files from a Rock RMS server
30 lines (27 loc) • 431 B
text/typescript
/**
* Configuration interface
*/
export interface Config {
serverUrl: string;
username: string;
password: string;
cookie: string;
token: string;
}
/**
* Rock RMS file interface
*/
export interface RockFile {
DisplayName: string;
Uri: string;
IsFolder: boolean;
Icon: string;
}
/**
* Rock RMS API response interface
*/
export interface ApiResponse<T> {
data: T;
status: number;
statusText: string;
}