webextension-store-meta
Version:
Get browser extension(webextension) item meta from Chrome Web Store and Firefox add-ons.
17 lines (16 loc) • 449 B
TypeScript
import type { Node } from "domhandler";
export declare class SourceJSONLD {
constructor(
/** @internal */
dom: Node[]);
name(): string | null;
description(): string | null;
ratingValue(): number | null;
ratingCount(): number | null;
price(): number | null;
priceCurrency(): string | null;
version(): string | null;
url(): string | null;
image(): string | null;
operatingSystem(): string | null;
}