We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5ce36a6 commit cdd49cfCopy full SHA for cdd49cf
packages/google-cloud-vision/src/helpers.ts
@@ -42,7 +42,13 @@ export interface FeaturesMethod {
42
objectLocalization?: FeatureFunction;
43
}
44
interface ImprovedRequest {
45
- image?: {source?: {filename: string}; content?: Uint8Array | string | null};
+ image?: {
46
+ source?: {
47
+ filename?: string;
48
+ imageUri?: string;
49
+ };
50
+ content?: Uint8Array | string | null;
51
52
// eslint-disable-next-line @typescript-eslint/no-explicit-any
53
features?: any;
54
0 commit comments