Browse Source

improve(plugin): update types

charlie 3 years ago
parent
commit
a9c02b87fd
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libs/src/LSPlugin.ts

+ 2 - 2
libs/src/LSPlugin.ts

@@ -119,8 +119,8 @@ export type IGitResult = { stdout: string; stderr: string; exitCode: number }
 export type IRequestOptions<R = any> = {
   url: string
   headers: Record<string, string>
-  method: 'GET' | 'POST' | 'PUT' | 'DELETE'
-  data: any
+  method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'
+  data: Object | ArrayBuffer
   timeout: number
   dataType: 'json' | 'text' | 'base64' | 'arraybuffer'
   success: (result: R) => void