| 30 | } from "./types.js"; |
| 31 | |
| 32 | export interface IStreamable { |
| 33 | read(): Promise<Chunk | undefined>; |
| 34 | write(chunk: Chunk | undefined): Promise<void>; |
| 35 | } |
| 36 | |
| 37 | export interface INNCrypto { |
| 38 | encrypt<TOutputFormat extends DataFormat>( |
nothing calls this directly
no outgoing calls
no test coverage detected