Subtheme of barrio
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

1 lines
437 B

{"version":3,"file":"interfaces.js","sourceRoot":"","sources":["../src/interfaces.ts"],"names":[],"mappings":"","sourcesContent":["import { Observable } from './Observable';\n\nexport type UnaryFunction<T, R> = (source: T) => R;\n\nexport type OperatorFunction<T, R> = UnaryFunction<Observable<T>, Observable<R>>;\n\nexport type FactoryOrValue<T> = T | (() => T);\n\nexport type MonoTypeOperatorFunction<T> = OperatorFunction<T, T>;\n"]}