More Fixes

This commit is contained in:
thororen1234 2024-07-18 01:28:14 -04:00
parent 87ca13518b
commit cc756ae94a
5 changed files with 8 additions and 6 deletions

View file

@ -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";

View file

@ -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) {

View file

@ -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";

View file

@ -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>;

View file

@ -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";