mindboost-rnbo-test-project/stores/interfaces/AudioBufferItem.ts

6 lines
106 B
TypeScript

export interface AudioBufferItem {
url: string;
buffer: AudioBuffer | null;
name: string;
}