Mercurial > code > home > repos > light9
view web/lib/avro-js.d.ts @ 2441:0761cdd5bff0
fix delay on setting midi, so it doesn't grab faders when you're sliding them
author | drewp@bigasterisk.com |
---|---|
date | Fri, 31 May 2024 11:52:47 -0700 |
parents | ef3cde3e81e8 |
children |
line wrap: on
line source
declare module "avro-js" { export namespace types { interface Type { fromBuffer(buffer: Buffer): Record; } type Record = any; } export function parse(schema: any): types.Type; }