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