Files @ 7e7874fed2e3
Branch filter:

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

drewp@bigasterisk.com
buttons to add panels to the layout
declare module "avro-js" {
    export namespace types {
        interface Type {
            fromBuffer(buffer: Buffer): Record;
        }
        type Record = any;
    }

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