Browse Source

Fix type error in index.d.ts

pull/427/head
jeromewu 5 years ago committed by GitHub
parent
commit
023d484209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/index.d.ts

2
src/index.d.ts vendored

@ -97,7 +97,7 @@ declare namespace Tesseract { @@ -97,7 +97,7 @@ declare namespace Tesseract {
type ImageLike = string | HTMLImageElement | HTMLCanvasElement | HTMLVideoElement
| CanvasRenderingContext2D | File | Blob | ImageData | Buffer;
interface Block {
paragraphs: Paragraph;
paragraphs: Paragraph[];
text: string;
confidence: number;
baseline: Baseline;

Loading…
Cancel
Save