export class OjpCol { /** * 1. Own Properties * Note that because these properties * do not have the @Prop() decorator, they will not be exposed * publicly on the host element, but only used internally. */ /** * 2. Reference to host HTML element. * Inlined decorator */ el: any; /** * 3. State() variables * Inlined decorator, alphabetical order. */ /** * 4. Public Property API * Inlined decorator, alphabetical order. These are * different from "own properties" in that public props * are exposed as properties and attributes on the host element. * Requires JSDocs for public API documentation. */ /** * The column's start position on all devices. Shorthand for desktop, tablet, and mobile start. (Internally uses `grid-column-start: ;`). *

Defaults to `auto`. *

`` is equivalent to *
`` */ start: string; /** * The column's start position on mobile devices. (Internally uses `grid-column-start: ;`). *

Defaults to `auto` or `start` property if one is defined. */ mstart: any; /** * The column's start position on tablet devices. (Internally uses `grid-column-start: ;`). *

Defaults to `auto` or `start` property if one is defined. */ tstart: any; /** * The column's start position on desktop devices. (Internally uses `grid-column-start: ;`). *

Defaults to `auto` or `start` property if one is defined. */ dstart: any; /** * How many grid columns this element will span. (Internally uses `grid-column-span: span ;`). *

Defaults to `auto`. *

`` is equivalent to *
`` */ span: string; /** * How many grid columns this element will span on mobile devices. (Internally uses `grid-column-span: span ;`). *

Defaults to `auto`. */ mspan: any; /** * How many grid columns this element will span on tablet devices. (Internally uses `grid-column-span: span ;`). *

Defaults to `auto`. */ tspan: any; /** * How many grid columns this element will span on desktop devices. (Internally uses `grid-column-span: span ;`). *

Defaults to `auto`. */ dspan: any; /** * 9. Local methods * Internal business logic. These methods cannot be * called from the host element. */ setCssProperties(): void; /** * 10. render() function * Always the last public method in the class. * If private methods present, they are below public methods. */ render(): any; }