fix(AOT): imports.
This commit is contained in:
parent
ddab9224b2
commit
b5cef05941
|
@ -1,7 +1,9 @@
|
|||
// @flow
|
||||
|
||||
import { AbstractAudioMuteButton } from '../base/toolbox';
|
||||
import type { AbstractButtonProps as Props } from '../base/toolbox';
|
||||
// We need to reference these files directly to avoid loading things that are not available
|
||||
// in this environment (e.g. JitsiMeetJS or interfaceConfig)
|
||||
import AbstractAudioMuteButton from '../base/toolbox/components/AbstractAudioMuteButton';
|
||||
import type { Props } from '../base/toolbox/components/AbstractButton';
|
||||
|
||||
const { api } = window.alwaysOnTop;
|
||||
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
// @flow
|
||||
|
||||
import { AbstractHangupButton } from '../base/toolbox';
|
||||
import type { AbstractButtonProps as Props } from '../base/toolbox';
|
||||
// We need to reference these files directly to avoid loading things that are not available
|
||||
// in this environment (e.g. JitsiMeetJS or interfaceConfig)
|
||||
import AbstractHangupButton from '../base/toolbox/components/AbstractHangupButton';
|
||||
import type { Props } from '../base/toolbox/components/AbstractButton';
|
||||
|
||||
const { api } = window.alwaysOnTop;
|
||||
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
// @flow
|
||||
|
||||
import { AbstractVideoMuteButton } from '../base/toolbox';
|
||||
import type { AbstractButtonProps as Props } from '../base/toolbox';
|
||||
// We need to reference these files directly to avoid loading things that are not available
|
||||
// in this environment (e.g. JitsiMeetJS or interfaceConfig)
|
||||
import AbstractVideoMuteButton from '../base/toolbox/components/AbstractVideoMuteButton';
|
||||
import type { Props } from '../base/toolbox/components/AbstractButton';
|
||||
|
||||
const { api } = window.alwaysOnTop;
|
||||
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
||||
|
|
Loading…
Reference in New Issue