UNPKG

haystack-nclient

Version:

Project Haystack Network Client

15 lines (14 loc) 267 B
import { HDateTime, HDict, HRef } from 'haystack-core'; /** * A record dict. */ export interface Record extends HDict { /** * The id of the record. */ id?: HRef; /** * The last time the record was modified. */ mod?: HDateTime; }