Skip to content

Commit bd98c61

Browse files
committed
feat: add optional signingEndpoint parameter to AuthClient.sign method
1 parent b293302 commit bd98c61

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

handwritten/storage/src/signer.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ type GoogleAuthLike = Pick<GoogleAuth, 'getCredentials' | 'sign'>;
2525
* @deprecated Use {@link GoogleAuth} instead
2626
*/
2727
export interface AuthClient {
28-
sign(blobToSign: string): Promise<string>;
28+
sign(blobToSign: string, signingEndpoint?: string): Promise<string>;
2929
getCredentials(): Promise<{
3030
client_email?: string;
3131
}>;

0 commit comments

Comments
 (0)