import { Storage } from '../Storage'; export interface Environment { getUrl(): URL; getStorage(): Storage; relative(path: string): string; redirect(to: string): void | Promise; btoa(str: string): string; atob(str: string): string; }