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