@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
10 lines (9 loc) • 419 B
TypeScript
import { type RecordFieldsMap } from '../layouts/recordFieldsMap.js';
import { type RecordBase } from './recordBase.js';
import { type LayoutRecord } from './layoutRecord.js';
import { type LayoutInterface } from '../layouts/layoutInterface.js';
export interface PortalBase<T extends RecordFieldsMap> {
readonly record: LayoutRecord<LayoutInterface>;
readonly name: string;
records: Array<RecordBase<T>>;
}