igniteui-angular-charts
Version: 
Ignite UI Angular charting components for building rich data visualizations for modern web apps.
19 lines (18 loc) • 470 B
TypeScript
import { Type } from "igniteui-angular-core";
/**
 * Describes available types of UI response to user panning and zooming operations.
 */
export declare enum WindowResponse {
    /**
     * Defer the view update until after the user action is complete.
     */
    Deferred = 0,
    /**
     * Update the view immediately while the user action is happening.
     */
    Immediate = 1
}
/**
 * @hidden
 */
export declare let WindowResponse_$type: Type;