mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-18 13:23:28 -05: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 "./screenshareAudioStore";
|
||||
export * from "./screenshareStore";
|
||||
export * from "../store/screenshareAudioStore";
|
||||
export * from "../store/screenshareStore";
|
||||
export * from "./userPanel";
|
||||
export * from "./video";
|
||||
|
|
|
@ -20,7 +20,7 @@ import { Logger } from "@utils/Logger";
|
|||
import { lodash } from "@webpack/common";
|
||||
|
||||
import { ProfilableStore, replaceObjectValuesIfExist, types, utils } from "..";
|
||||
import { ScreenshareProfile, ScreenshareStore } from ".";
|
||||
import { ScreenshareProfile, ScreenshareStore } from "../store";
|
||||
|
||||
|
||||
export function getDefaultVideoTransportationOptions(connection: types.Connection) {
|
||||
|
|
|
@ -16,6 +16,8 @@
|
|||
* 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 "./profileable";
|
||||
export * from "./store";
|
||||
|
|
|
@ -16,14 +16,14 @@
|
|||
* 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 {
|
||||
defaultMicrophoneProfiles as defaultScreenshareAudioProfiles,
|
||||
MicrophoneProfile as ScreenshareAudioProfile,
|
||||
MicrophoneStore as ScreenshareAudioStore,
|
||||
microphoneStoreDefault as screenshareAudioStoreDefault
|
||||
} from "../stores";
|
||||
} from ".";
|
||||
|
||||
export let screenshareAudioStore: ProfilableStore<ScreenshareAudioStore, ScreenshareAudioProfile>;
|
||||
|
|
@ -16,7 +16,7 @@
|
|||
* 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";
|
||||
|
||||
|
Loading…
Reference in a new issue