UNPKG

react-orchestra

Version:

A toolbox to build interactive and smart instruments on the web and mobile.

17 lines (16 loc) 452 B
import React from "react"; export declare type NoteFactoryProps = { noteName: string; scaleName: string; instrumentName: string; startOctave: number; octaveCount: number; noteProps: any; renderNote: (a: any) => any; type: "scale"; }; declare class NoteFactory extends React.Component<NoteFactoryProps> { renderNotesFromScale(): JSX.Element[]; render(): JSX.Element; } export default NoteFactory;