@loadsmart/miranda-wc
Version:
Miranda Web Components component library
49 lines (48 loc) • 1.23 kB
TypeScript
import { BaseLayout } from '../layout/base-layout';
export declare class Body extends BaseLayout {
protected static CSSPropertiesPrefix: string;
static styles: import("lit").CSSResult[];
static get properties(): {
slot: {
type: StringConstructor;
reflect: boolean;
};
padding: {
type: StringConstructor;
};
paddingX: {
type: StringConstructor;
attribute: string;
};
paddingY: {
type: StringConstructor;
attribute: string;
};
paddingT: {
type: StringConstructor;
attribute: string;
};
paddingB: {
type: StringConstructor;
attribute: string;
};
paddingL: {
type: StringConstructor;
attribute: string;
};
paddingR: {
type: StringConstructor;
attribute: string;
};
};
slot: string;
getCSSPropertiesPrefix(): string;
static define(): void;
constructor();
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'm-body': Body;
}
}