mwcpl
Version:
Master's Web Component Pattern Library
15 lines (14 loc) • 360 B
TypeScript
import { ComponentInterface } from '../../stencil-public-runtime';
export declare class MwcplNavbar implements ComponentInterface {
/**
* Creates a fixed navigation bar.
*/
fixed: boolean;
/**
* Reference to the host element.
*/
element: HTMLElement;
render(): any;
enter(): void;
leave(): void;
}