8 lines
304 B
TypeScript
8 lines
304 B
TypeScript
/**
|
|
* @author dbkillerf6
|
|
* @since 2020-04-10
|
|
*/
|
|
import type { MicroAppStateActions } from './interfaces';
|
|
export declare function initGlobalState(state?: Record<string, any>): MicroAppStateActions;
|
|
export declare function getMicroAppStateActions(id: string, isMaster?: boolean): MicroAppStateActions;
|