@skyux/core
Version:
This library was generated with [Nx](https://nx.dev).
11 lines (10 loc) • 361 B
TypeScript
import { Observable } from 'rxjs';
/**
* @internal
* An API to provide default Angular component input values to child components.
*/
export declare class SkyDefaultInputProvider {
#private;
setValue<T>(componentName: string, inputName: string, value: T): void;
getValue<T>(componentName: string, inputName: string): Observable<T> | undefined;
}