UNPKG

igniteui-angular-core

Version:

Ignite UI Angular Core logic used in multiple UI components.

31 lines (30 loc) 1.01 kB
import { DataSourcePropertiesRequestedChangedEventArgs as DataSourcePropertiesRequestedChangedEventArgs_internal } from "./DataSourcePropertiesRequestedChangedEventArgs"; /** * Provides information about a properties requested changed event. */ export class IgxDataSourcePropertiesRequestedChangedEventArgs { constructor() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } createImplementation() { return new DataSourcePropertiesRequestedChangedEventArgs_internal(); } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); } }