///
///
///
///
///
///
declare module "copyright" {
export class WorkerDesignGlobalCopyright {
static toString(): string;
}
}
declare module "sk/worker/global/DesignWorkerGlobalSettings" {
import { Settings } from 'cross/runtime/framework/Settings';
export class DesignWorkerGlobalSettings extends Settings {
componentGuid: string;
componentVersion: string;
designGuid: string;
brandGuid: string;
designVersion: string;
productShopcartId: string;
productState: string;
productGuid: string;
productStandardGuid: string;
modelId: string;
mode: string;
schemeId: string;
schemeVersion: string;
cityId: string;
roleId: string;
applicationTypeCd: string;
url: string;
}
}
declare module "sk/worker/global/DesignWorkerGlobalApplication" {
import { ResultObject } from 'cross/runtime/lang/ResultObject';
import { WorkerApplication } from 'cross/worker/framework/WorkerApplication';
import { WorkerService } from 'foundation/core/module/worker/WorkerService';
import { WorkerAliveService } from 'sk/worker/logic/global/WorkerAliveService';
export class DesignWorkerGlobalApplication extends WorkerApplication {
protected _workerService: WorkerService;
protected _workerAliveService: WorkerAliveService;
startAsync(): Promise;
}
export function createApplication(global: any): DesignWorkerGlobalApplication;
}
declare module "sk/worker/global/IndexSpace" {
export class IndexSpace {
static namespaces(): string[];
}
}