UNPKG

@ipfn/cell-codecs

Version:
10 lines (9 loc) 236 B
/// <reference types="node" /> import { Cell } from '@ipfn/cell'; export declare type Bytes = Buffer | string; export interface Codec { name: string; hex?: string; encode(cell: Cell): Bytes; decode(body: Bytes): Cell; }