import { createContext } from "@lit/context"; import type { RegisterClientOptions } from "@peertube/peertube-types/client/types"; import type { ChannelConfiguration } from "shared/lib/types"; import { ChannelDetailsService } from "../services/channel-details"; export const registerClientOptionsContext = createContext(Symbol('register-client-options')); export const channelConfigurationContext = createContext(Symbol('channel-configuration')); export const channelDetailsServiceContext = createContext(Symbol('channel-configuration-service'));