UNPKG

204 BTypeScriptView Raw
1import { Args, ModuleFn } from '../index';
2export interface SubState {
3 globals: Args;
4}
5export interface SubAPI {
6 updateGlobals: (newGlobals: Args) => void;
7}
8export declare const init: ModuleFn;