minidev
Version:
支付宝小程序开发 cli(minidev)提供了常用的支付宝系小程序开发指令,能够方便地在各类平台上快速进行小程序的开发、预览、上传等操作。
15 lines (14 loc) • 627 B
TypeScript
import { IBuilderDebugConfig, ECompileTargetType } from './interface';
export declare class BuilderDebugContext {
assetsQueryUrl: string;
injectCodeTempPath: string;
protected offlineDirectoryPath: string;
protected readonlyDirectoryPath: string;
protected assetsMapFilename: string;
protected boatmanFilename: Record<ECompileTargetType, string>;
constructor(config: IBuilderDebugConfig);
getAssetsMapFilePath(): string;
getBoatmanFilePath(target: ECompileTargetType): string;
getReadonlyAssetsMapFilePath(): string;
getReadonlyBoatmanFilePath(target: ECompileTargetType): string;
}