UNPKG

@jd-data-limited/easy-fm

Version:

easy-fm is a Node.js module that allows you to interact with a [FileMaker database stored](https://www.claris.com/filemaker/) on a [FileMaker server](https://www.claris.com/filemaker/server/). This module interacts with your server using the [FileMaker

14 lines (13 loc) 420 B
import { type FMHostMetadata } from '../types.js'; import { type Moment } from 'moment'; export interface HostBase { readonly hostname: string; readonly protocol: string; readonly timezoneOffsetFunc: (moment: Moment) => number; readonly verify: boolean; metadata: FMHostMetadata; getMetadata: () => PromiseLike<any>; timeFormat: string; dateFormat: string; timeStampFormat: string; }