blob: 2665748b0a3233f6d4d367d93666b4ca76624141 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import {NotImplementedError} from '../NotImplemented'
export function getIsReducedMotionEnabled(): boolean {
throw new NotImplementedError()
}
export function setAudioMixWithOthers(mixWithOthers: boolean): void {
throw new NotImplementedError({mixWithOthers})
}
|