UNPKG

tinacms

Version:

[![GitHub license](https://img.shields.io/github/license/tinacms/tinacms?color=blue)](https://github.com/tinacms/tinacms/blob/main/LICENSE) [![npm version](https://img.shields.io/npm/v/tinacms.svg?style=flat)](https://www.npmjs.com/package/tinacms) [![Bui

7 lines (6 loc) 195 B
export { NodeCache } from './node-cache'; export type Cache = { get: (key: string) => Promise<any>; makeKey: (key: any) => string; set: (key: string, value: any) => Promise<void>; };