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

8 lines (7 loc) 298 B
import { type Portal } from '../records/portal.js'; import { type RecordFieldsMap } from './recordFieldsMap.js'; export interface LayoutInterface { fields: RecordFieldsMap; portals: PortalInterface; } export type PortalInterface = Record<string | number | symbol, Portal<RecordFieldsMap>>;