ranui
Version:
A framework-agnostic Web Components UI library built on native custom elements, with TypeScript types, light/dark theming, SSR and PWA support.
14 lines (13 loc) • 447 B
TypeScript
import { RanElement } from '@/utils/index';
export declare class Skeleton extends RanElement {
_div: HTMLElement;
_shadowDom: ShadowRoot;
static get observedAttributes(): string[];
constructor();
get sheet(): string;
set sheet(value: string);
handlerExternalCss: () => void;
connectedCallback(): void;
attributeChangedCallback(name: string, oldValue: string, newValue: string): void;
}
export default Skeleton;