Updating return type for raw method #2379 (#2383)

This commit is contained in:
Justin Dalrymple 2022-03-09 13:35:00 -05:00 committed by GitHub
parent 472471c4d9
commit a803c2d288
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,6 +104,6 @@ export class RepositoryFiles<C extends boolean = false> extends BaseResource<C>
this,
endpoint`projects/${projectId}/repository/files/${filePath}/raw`,
options,
) as unknown as Promise<Blob>;
) as unknown as Promise<string>;
}
}