Files @ bbff83207963
Branch filter:

Location: light9/web/lib/avro-js.d.ts

drewp@bigasterisk.com
minor cleanups and timings
declare module "avro-js" {
    export namespace types {
        interface Type {
            fromBuffer(buffer: Buffer): Record;
        }
        type Record = any;
    }

    export function parse(schema: any): types.Type;
}