Type alias AudioTransitionContext

AudioTransitionContext: {
    cancel: ((revert?) => void);
    complete: (() => void);
}

Type declaration

  • cancel: ((revert?) => void)
      • (revert?): void
      • 遷移を取り消す。音量はこの関数を実行した時点での値となる。

        Parameters

        • Optional revert: boolean

          音量を遷移実行前まで戻すかどうか。省略時は false

        Returns void

  • complete: (() => void)
      • (): void
      • 遷移を即座に完了する。 音量は遷移完了後の値となる。

        Returns void

Generated using TypeDoc