UNPKG

@rr0/cms

Version:

RR0 Content Management System (CMS)

14 lines (13 loc) 420 B
import { HtmlSsgContext } from "ssg-api"; import { ReferenceGenerator } from "../ReferenceGenerator.js"; /** * Count sources in the whole website. */ export declare class SourceSiteCounter<C extends HtmlSsgContext> implements ReferenceGenerator<C> { /** * Source counter in the scope of the current page/context. */ protected number: number; get value(): string; next(_context: C): string; }