launchpad-mini
Version:
JavaScript library for interacting with the Novation’s midi board LAUNCHPAD MINI.
23 lines (22 loc) • 512 B
TypeScript
/**
* All Launchpad buttons
* @type {Array.<Number>}
*/
export const All: Array<number>;
/**
* Grid buttons (8×8 square buttons)
* @type {Array.<Number>}
*/
export const Grid: Array<number>;
/**
* Automap buttons (top row of round buttons)
* @type {Array.<Number>}
*/
export const Automap: Array<number>;
/**
* Scene buttons (right row of round buttons)
* @type {Array.<Number>}
*/
export const Scene: Array<number>;
export function byId(id: any): any;
export function byXy(x: any, y: any): number;