import { Observable } from "./Observable.js"; /** * Creates an observable that will immediately error with the provided value. * If the value is a function then the function will be called to get the value. */ export declare function fail(errorOrCallback: E | (() => E)): Observable; //# sourceMappingURL=fail.d.ts.map