- MANUAL-PRODUTO.md: Manual do usuário final - MANUAL-VENDAS.md: Estratégia comercial e vendas - MANUAL-TECNICO.md: Infraestrutura e deploy - README.md: Visão geral do projeto
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
import { BaseGroupPlaybackControls } from './BaseGroup.mjs';
|
|
|
|
/**
|
|
* TODO: This is a temporary class to support the legacy
|
|
* thennable API
|
|
*/
|
|
class GroupPlaybackControls extends BaseGroupPlaybackControls {
|
|
then(onResolve, onReject) {
|
|
return Promise.all(this.animations).then(onResolve).catch(onReject);
|
|
}
|
|
}
|
|
|
|
export { GroupPlaybackControls };
|