UNPKG

webextension-store-meta

Version:

Get browser extension(webextension) item meta from Chrome Web Store and Firefox add-ons.

17 lines (16 loc) 445 B
import type { Node } from "domhandler"; export declare class SourceReduxStoreState { constructor( /** @internal */ dom: Node[]); name(): string | null; description(): string | null; ratingValue(): number | null; ratingCount(): number | null; users(): number | null; version(): string | null; url(): string | null; image(): string | null; size(): string | null; lastUpdated(): string | null; }