wj-elements
Version:
WebJET Elements is a modern set of user interface tools harnessing the power of web components designed to simplify web application development.
17 lines (16 loc) • 455 B
TypeScript
import { default as WJElement } from '../wje-element/element.js';
/**
* @summary Col class that extends WJElement.
* @documentation https://elements.webjet.sk/components/col
* @status stable
* @augments WJElement
* @slot - The col main content.
*/
export default class Col extends WJElement {
static get cssStyleSheet(): any;
/**
* Draws the component element.
* @returns {DocumentFragment}
*/
draw(): DocumentFragment;
}