UNPKG

379 BTypeScriptView Raw
1export interface HistoryMethods {}
2
3export interface HistoryEvents {}
4
5export interface HistoryOptions {
6 /**
7 * Works in addition to hashnav or history to replace current url state with the
8 * new one instead of adding it to history
9 *
10 * @default false
11 */
12 replaceState?: boolean;
13
14 /**
15 * Url key for slides
16 *
17 * @default 'slides'
18 */
19 key?: string;
20}