springroll-container
Version:
The iframe controller for interacting with SpringRoll applications
15 lines (9 loc) • 324 B
TypeScript
import { SliderPlugin } from '../base-plugins';
type SpeedScaleOptions = {
defaultValue?: number | string;
};
export class SpeedScalePlugin extends SliderPlugin {
constructor(speedScaleSliders?: string| HTMLElement, options: SpeedScaleOptions)
onSpeedScaleChange(e: Event): void;
get speedScaleKey(): string;
}