@dimanoid/ngx-dm-tour
Version:
22 lines (21 loc) • 690 B
TypeScript
import { InjectionToken } from '@angular/core';
export declare type DmTourShapeType = 'auto' | 'circle' | 'square';
export interface IDmTourConfig {
rootPath?: string;
loadIndexOnStart?: boolean;
loaderHtml?: string;
defaultShape?: DmTourShapeType;
customCssClass?: string;
debug?: number;
}
export declare class DmTourConfig implements IDmTourConfig {
rootPath: string;
loadIndexOnStart: boolean;
loaderHtml: string;
defaultShape: DmTourShapeType;
customCssClass: string;
debug: number;
constructor(json?: IDmTourConfig);
apply(json?: IDmTourConfig): DmTourConfig;
}
export declare const DM_TOUR_CONF: InjectionToken<IDmTourConfig>;