import { useReplicant } from 'nodecg-vue-composable'; import type { Schemas } from '../types'; // YOU MUST CHANGE THIS TO YOUR BUNDLE'S NAME! const thisBundle = 'scoreko-dev'; /** * This is where you can declare all of your replicants to import easily into other (browser based) files. * "useReplicant" is a helper composable to make accessing/modifying replicants easier. * For more information see https://github.com/Dan-Shields/nodecg-vue-composable */ export const exampleReplicant = useReplicant('exampleReplicant', thisBundle); export const playersReplicant = useReplicant('players', thisBundle); export const scoreboardReplicant = useReplicant('scoreboard', thisBundle); export const graphicsSettingsReplicant = useReplicant('graphicsSettings', thisBundle); export const commentaryReplicant = useReplicant('commentary', thisBundle);