UNPKG

ldrs

Version:

Tiny HTML and SVG loaders as web components

34 lines 931 B
import Base from '../lib/LdrsBaseElement.js'; declare global { namespace JSX { interface IntrinsicElements { 'l-square': { size?: string | number; color?: string | number; speed?: string | number; stroke?: string | number; 'stroke-length'?: string | number; 'bg-opacity'?: string | number; }; } } } declare class Square extends Base { _attributes: string[]; size: string; color: string; speed: string; stroke: string; 'stroke-length': string; 'bg-opacity': string; static get observedAttributes(): string[]; constructor(); connectedCallback(): void; attributeChangedCallback(): void; } declare const _default: { register: (name?: string) => void; element: typeof Square; }; export default _default; //# sourceMappingURL=square.d.ts.map