lath
Version:
Seamless connection of pages.
10 lines (9 loc) • 335 B
TypeScript
import { SlideBase } from './Base';
import { SlidingState } from '../types';
export declare class SlideState extends SlideBase {
private slidingStateCatch?;
get index(): number;
get slidingState(): SlidingState;
getAppletIdByIndex(index: number): string;
getAppletIndexById(id: string | number): number;
}