igniteui-angular-core
Version:
Ignite UI Angular Core logic used in multiple UI components.
27 lines (26 loc) • 838 B
TypeScript
import { StockChangedEventArgs as StockChangedEventArgs_internal } from "./StockChangedEventArgs";
/**
* Represents event arguments for FDC3 MessageRecived
*/
export declare class IgxStockChangedEventArgs {
protected _implementation: any;
/**
* @hidden
*/
get i(): StockChangedEventArgs_internal;
private onImplementationCreated;
constructor();
protected _provideImplementation(i: any): void;
/**
* Gets array of added stock symbols
*/
get addedSymbols(): string[];
set addedSymbols(v: string[]);
static ngAcceptInputType_addedSymbols: string[] | string;
/**
* Gets array of removed stock symbols
*/
get removedSymbols(): string[];
set removedSymbols(v: string[]);
static ngAcceptInputType_removedSymbols: string[] | string;
}