mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 11:42:06 +00:00
8 lines
162 B
TypeScript
8 lines
162 B
TypeScript
import type { NodeCGServerAPI } from '../../types/index.js';
|
|
|
|
export let nodecg!: NodeCGServerAPI;
|
|
|
|
export function set(ctx: NodeCGServerAPI) {
|
|
nodecg = ctx;
|
|
}
|