makecode-core
Version:
MakeCode (PXT) - web-cached build tool
16 lines (15 loc) • 515 B
TypeScript
import * as mkc from "./mkc";
export interface TargetDescriptor {
id: string;
targetId: string;
name: string;
description: string;
website: string;
corepkg?: string;
label?: string;
dependencies?: Record<string, string>;
testDependencies?: Record<string, string>;
}
export declare const descriptors: TargetDescriptor[];
export declare function guessMkcJson(prj: mkc.Package): void;
export declare function loadDeps(ed: mkc.DownloadedEditor, mainPrj: mkc.Package): Promise<void>;