Files @ cc69faa87c27
Branch filter:

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

drewp@bigasterisk.com
tear up and rewrite ascoltami to emit player state into the graph. web ui works but displays nothing but songs
declare module "avro-js" {
    export namespace types {
        interface Type {
            fromBuffer(buffer: Buffer): Record;
        }
        type Record = any;
    }

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