UNPKG

ajsfw

Version:
11 lines (10 loc) 339 B
import { Exception } from "ajsfw/exceptions"; import { IBootText } from "./IBootText"; export interface IBootConfig { showErrors: boolean; offlineSupport: boolean; offlineFilesCount: number; cacheUpdateText: IBootText; offlineFallbackTimeout: number; errorHandler?: (e: Exception | ErrorEvent) => void; }