Files
mindboost-rnbo-test-project/stores/interfaces/AudioBufferItem.ts
2025-07-01 10:53:26 +00:00

6 lines
106 B
TypeScript

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