UNPKG

mdxlayer

Version:

Transform your MDX content into typed, JSON-powered data with flexible schema validation.

8 lines (7 loc) 224 B
export type Cache = Record<string, number>; export declare const cache: { changed: (content: string, key: string) => boolean; get: () => Cache; mtime: (key: string) => boolean; set: (item: Cache) => void; };