UNPKG

167 BTypeScriptView Raw
1/**
2 * Event fired by wire adapters to emit a new value.
3 */
4export declare class ValueChangedEvent {
5 value: any;
6 type: string;
7 constructor(value: any);
8}