Chore: Fix prettier issues in test files (#1710)

* Chore: Fix prettier issues in test files

* Escape w and d properly
This commit is contained in:
Zoltán Bedi
2023-10-13 15:20:31 +02:00
committed by GitHub
parent 5df74544e0
commit 43f2c6653b
4 changed files with 90 additions and 51 deletions

View File

@@ -19,11 +19,11 @@ export interface JSONRPCError {
data?: string;
}
export type JSONRPCRequestParams = {[key: string]: any};
export type JSONRPCRequestParams = { [key: string]: any };
export type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'HEAD' | 'CONNECT' | 'OPTIONS' | 'TRACE';
export type GFRequestOptions = {[key: string]: any};
export type GFRequestOptions = { [key: string]: any };
export interface ZabbixRequestResponse {
data?: JSONRPCResponse<any>;