UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

37 lines (36 loc) 1.04 kB
import { MultiSliderYValueChangingEventArgs as MultiSliderYValueChangingEventArgs_internal } from "./MultiSliderYValueChangingEventArgs"; export class IgcMultiSliderYValueChangingEventArgs { createImplementation() { return new MultiSliderYValueChangingEventArgs_internal(); } /** * @hidden */ get i() { return this._implementation; } onImplementationCreated() { } constructor() { this._implementation = this.createImplementation(); this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } _provideImplementation(i) { this._implementation = i; this._implementation.externalObject = this; this.onImplementationCreated(); if (this._initializeAdapters) { this._initializeAdapters(); } } get value() { return this.i.a; } set value(v) { this.i.a = +v; } }