ng-yunzai-mobile
Version:
1. 修改wechat.micro.ts
18 lines (17 loc) • 764 B
TypeScript
import { DeviceService } from '../devices/device.service';
import { BaseClient } from '../client/base.client';
import { InfoService } from "../info/info.service";
export declare class StartupService {
private deviceService;
private systemInfoService;
private baseclient;
constructor(deviceService: DeviceService, systemInfoService: InfoService, baseclient: BaseClient);
load(): Promise<any>;
}
export declare function StartupServiceFactory(startupService: StartupService): Function;
export declare const APPINIT_PROVIDES: (typeof StartupService | {
provide: import("@angular/core").InjectionToken<(() => void)[]>;
useFactory: typeof StartupServiceFactory;
deps: (typeof StartupService)[];
multi: boolean;
})[];