1export const IS_MANAGED_ENV = false;
2export const IS_ENV_WITH_UPDATES_ENABLED = false;
3export const IS_ENV_WITHOUT_UPDATES_ENABLED = false;
4
5// Compute manifest base URL if available
6export const manifestBaseUrl = null;
7
8export async function downloadAsync(uri, hash, type, name): Promise<string> {
9  return uri;
10}
11
12export function getManifest() {
13  return {};
14}
15
16export function getManifest2() {
17  return {};
18}
19