/** * @template D Type of global data子模块. */ declare type ICreateGlobalOptions = { /** * miniu data global data 子模块默认值. */ defaultGlobalData: D; [propName: string]: unknown; }; /** * 创建全局数据子模块. * * @template D Type of global data子模块. * @param options * @returns */ declare function createGlobalData>(options: ICreateGlobalOptions): ICreateGlobalOptions; export default createGlobalData;