Skip to content

Commit

Permalink
fix: Format
Browse files Browse the repository at this point in the history
  • Loading branch information
bukinoshita committed Aug 15, 2023
1 parent 6c3c959 commit 5de38f1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/resend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,11 @@ export class Resend {
return await response.json();
}

async post<T>(path: string, entity?: any, options: PostOptions = {}): Promise<T> {
async post<T>(
path: string,
entity?: any,
options: PostOptions = {},
): Promise<T> {
const requestOptions = {
method: 'POST',
headers: this.headers,
Expand Down

0 comments on commit 5de38f1

Please sign in to comment.