poe-custom-elements
Version:
Path of Exile custom elements
24 lines • 829 B
TypeScript
import { LitElement, TemplateResult, CSSResult } from 'lit';
import './poe-item.js';
/**
* Itemized divination card with divination card element on hover, that requires only a name of card.
* @summary Itemized divination card with divination card element on hover,
* that requires only a name of card.
*
* @cssprop --poe-item-size - Size of item.
* @cssprop --stack-size-font-size - Font size of stack size.
*
* Copy item-card and divination-card folders to your public dir.
*/
export declare class PoeItemCardElement extends LitElement {
name: string;
stackSize?: number;
protected render(): TemplateResult;
static styles: CSSResult;
}
declare global {
interface HTMLElementTagNameMap {
'poe-item-card': PoeItemCardElement;
}
}
//# sourceMappingURL=poe-item-card.d.ts.map