Skip to content

Commit

Permalink
More corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Borgh committed Feb 13, 2024
1 parent 3945b6a commit b0373bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/OAuth2App.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ declare class OAuth2App {
configId: string;
}): string;
hasOAuth2Client({ sessionId, configId, }?: {
sessionId: any;
sessionId: string;
configId?: string;
}): boolean;
/**
Expand Down Expand Up @@ -170,6 +170,6 @@ declare class OAuth2App {
getOAuth2Devices({ sessionId, configId, }: {
sessionId: string;
configId: string;
}): Promise<any[]>;
}): Promise<OAuth2Client[]>;
}
import OAuth2Client = require("./OAuth2Client");

0 comments on commit b0373bd

Please sign in to comment.