| 50 | | "timeout"; |
| 51 | |
| 52 | export interface ClassifyOptions { |
| 53 | /** Bypass the 60s cache. Used after any state-mutating operation. */ |
| 54 | noCache?: boolean; |
| 55 | /** Env override for the spawned `gbrain` (used by tests to point at a fake binary). */ |
| 56 | env?: NodeJS.ProcessEnv; |
| 57 | } |
| 58 | |
| 59 | interface CacheEntry { |
| 60 | // Local-cache schema version, controlled by gstack. Not to be confused |
nothing calls this directly
no outgoing calls
no test coverage detected