added easyOCR
This commit is contained in:
parent
37d6678577
commit
9f208b0606
27 changed files with 1780 additions and 112 deletions
13
src/types.ts
13
src/types.ts
|
|
@ -56,3 +56,16 @@ export interface LogEvent {
|
|||
type: 'area-entered' | 'whisper-received' | 'trade-accepted' | 'unknown';
|
||||
data: Record<string, string>;
|
||||
}
|
||||
|
||||
export type LinkMode = 'live' | 'scrap';
|
||||
|
||||
export type ScrapState = 'IDLE' | 'TRAVELING' | 'BUYING' | 'SALVAGING' | 'STORING' | 'FAILED';
|
||||
|
||||
export interface TradeItem {
|
||||
id: string;
|
||||
w: number;
|
||||
h: number;
|
||||
stashX: number;
|
||||
stashY: number;
|
||||
account: string;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue