mirror of
https://github.com/Equicord/Equicord.git
synced 2025-06-08 14:13:01 -04:00
More Fixes
This commit is contained in:
parent
87ca13518b
commit
cc756ae94a
5 changed files with 8 additions and 6 deletions
|
@ -17,7 +17,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
export * from "./audio";
|
export * from "./audio";
|
||||||
export * from "./screenshareAudioStore";
|
export * from "../store/screenshareAudioStore";
|
||||||
export * from "./screenshareStore";
|
export * from "../store/screenshareStore";
|
||||||
export * from "./userPanel";
|
export * from "./userPanel";
|
||||||
export * from "./video";
|
export * from "./video";
|
||||||
|
|
|
@ -20,7 +20,7 @@ import { Logger } from "@utils/Logger";
|
||||||
import { lodash } from "@webpack/common";
|
import { lodash } from "@webpack/common";
|
||||||
|
|
||||||
import { ProfilableStore, replaceObjectValuesIfExist, types, utils } from "..";
|
import { ProfilableStore, replaceObjectValuesIfExist, types, utils } from "..";
|
||||||
import { ScreenshareProfile, ScreenshareStore } from ".";
|
import { ScreenshareProfile, ScreenshareStore } from "../store";
|
||||||
|
|
||||||
|
|
||||||
export function getDefaultVideoTransportationOptions(connection: types.Connection) {
|
export function getDefaultVideoTransportationOptions(connection: types.Connection) {
|
||||||
|
|
|
@ -16,6 +16,8 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
export * from "../store/screenshareAudioStore";
|
||||||
|
export * from "../store/screenshareStore";
|
||||||
export * from "./microphoneStore";
|
export * from "./microphoneStore";
|
||||||
export * from "./profileable";
|
export * from "./profileable";
|
||||||
export * from "./store";
|
export * from "./store";
|
||||||
|
|
|
@ -16,14 +16,14 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { createPluginStore, ProfilableStore, profileable } from "../../philsPluginLibrary.desktop";
|
import { createPluginStore, ProfilableStore, profileable } from "..";
|
||||||
import { PluginInfo } from "../constants";
|
import { PluginInfo } from "../constants";
|
||||||
import {
|
import {
|
||||||
defaultMicrophoneProfiles as defaultScreenshareAudioProfiles,
|
defaultMicrophoneProfiles as defaultScreenshareAudioProfiles,
|
||||||
MicrophoneProfile as ScreenshareAudioProfile,
|
MicrophoneProfile as ScreenshareAudioProfile,
|
||||||
MicrophoneStore as ScreenshareAudioStore,
|
MicrophoneStore as ScreenshareAudioStore,
|
||||||
microphoneStoreDefault as screenshareAudioStoreDefault
|
microphoneStoreDefault as screenshareAudioStoreDefault
|
||||||
} from "../stores";
|
} from ".";
|
||||||
|
|
||||||
export let screenshareAudioStore: ProfilableStore<ScreenshareAudioStore, ScreenshareAudioProfile>;
|
export let screenshareAudioStore: ProfilableStore<ScreenshareAudioStore, ScreenshareAudioProfile>;
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "../../philsPluginLibrary.desktop";
|
import { createPluginStore, ProfilableInitializer, ProfilableStore, profileable, ProfileableProfile } from "..";
|
||||||
import { PluginInfo } from "../constants";
|
import { PluginInfo } from "../constants";
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue