mirror of
https://github.com/certd/certd.git
synced 2026-06-20 08:37:31 +08:00
4 lines
106 B
TypeScript
4 lines
106 B
TypeScript
export interface IOcrService {
|
|
doOcrFromImage(opts: { image: string }): Promise<{ texts: string[] }>;
|
|
}
|