///
///
///
declare namespace pxt {
interface SimpleDriverCallbacks {
cacheGet: (key: string) => Promise;
cacheSet: (key: string, val: string) => Promise;
httpRequestAsync?: (options: Util.HttpRequestOptions) => Promise;
pkgOverrideAsync?: (id: string) => Promise