import { PitchValue, Segment } from '@musical-patterns/material'; import { Block, ContourPiece, ContourWhole } from '@musical-patterns/utilities'; interface OtherBlocks { backboneFifteen: Block; backboneTwentyfour: Block; secretLongChord: Block; shifty: Block; shiftyFifteen: Block; shiftyTwentyfour: Block; shiftyTwentyfourVariant: Block; } interface OtherContourPieces { backboneFifteen: ContourPiece; backboneTwentyfour: ContourPiece; secretLongChord: ContourPiece; shifty: ContourPiece; shiftyFifteen: ContourPiece; shiftyTwentyfour: ContourPiece; shiftyTwentyfourVariant: ContourPiece; } interface OtherSegments { secretLongChord: Segment; shifty: Segment; totallyOutThereIntro: Segment; } interface OtherContourWholes { secretLongChord: ContourWhole; shiftyA: ContourWhole; shiftyB: ContourWhole; totallyOutThereIntro: ContourWhole; } export { OtherBlocks, OtherContourPieces, OtherSegments, OtherContourWholes, };