import { PitchValue, Segment } from '@musical-patterns/material'; import { Block, ContourPiece, ContourWhole, KeyMap, ObjectOf } from '@musical-patterns/utilities'; interface ThirtyfiveBlocks extends ObjectOf { yaosAccidentInspired: Block; yaosBass: Block; zdaub: Block; zdaubOnlyWiggle: Block; } declare type ThirtyfiveContourPieces = KeyMap>; interface ThirtyfiveContourWholes { thirtyfiveYaosAccidentInspired: ContourWhole; thirtyfiveYaosBass: ContourWhole; thirtyfiveZdaub: ContourWhole; } interface ThirtyfiveSegments { thirtyfiveSegment: Segment; } export { ThirtyfiveBlocks, ThirtyfiveContourPieces, ThirtyfiveContourWholes, ThirtyfiveSegments, };