@stencil/router
Version:
15 lines (14 loc) • 349 B
TypeScript
import { ComponentInterface } from '../../stencil.core';
/**
* Updates the document title when found.
*
* @name RouteTitle
* @description
*/
export declare class RouteTitle implements ComponentInterface {
el: HTMLElement;
titleSuffix: string;
pageTitle: string;
updateDocumentTitle(): void;
componentWillLoad(): void;
}