UNPKG

@becomes/cms

Version:

Simple CMS for building APIs.

8 lines (7 loc) 304 B
import { Entry } from './models/entry.model'; import { Cache } from '../util/cache'; export declare class EntryServiceCache extends Cache<Entry> { findByTemplateIdAndEntrySlug(templateId: string, entrySlug: string): Entry; findAllByTemplateId(templateId: string): Entry[]; count(): number; }