UNPKG

electr0lysis

Version:

Simple framework for data serialization and interchange.

10 lines (9 loc) 398 B
import "f1ux/array/operator/first"; import Decoder from "../Decoder"; import DecoderContext from "../DecoderContext"; import DecoderResult from "../DecoderResult"; import Type from "../reflect/Type"; declare class ArrayDecoder implements Decoder<any[]> { decode(type: Type, view: DataView, offset: number, context: DecoderContext): DecoderResult<any[]>; } export default ArrayDecoder;