This commit is contained in:
CHEVALLIER Abel
2025-11-13 16:23:22 +01:00
parent de9c515a47
commit cb235644dc
34924 changed files with 3811102 additions and 0 deletions

9
node_modules/@angular/cdk/coercion/private/index.d.ts generated vendored Executable file
View File

@@ -0,0 +1,9 @@
import { Observable } from 'rxjs';
/**
* Given either an Observable or non-Observable value, returns either the original
* Observable, or wraps it in an Observable that emits the non-Observable value.
*/
declare function coerceObservable<T>(data: T | Observable<T>): Observable<T>;
export { coerceObservable };