UNPKG

296 BTypeScriptView Raw
1import { ComponentInterface } from '../../stencil.core';
2import { RouterHistory } from '../../global/interfaces';
3export declare class Redirect implements ComponentInterface {
4 el: HTMLElement;
5 history?: RouterHistory;
6 root?: string;
7 url?: string;
8 componentWillLoad(): void;
9}