UNPKG

@proofkit/typegen

Version:

`@proofkit/typegen` is a tool for generating TypeScript types from FileMaker database schemas, making it easier to work with FileMaker data in modern TypeScript projects.

5 lines (4 loc) 323 B
import { SourceFile } from 'ts-morph'; import { BuildSchemaArgs } from './types.js'; export declare function buildSchema(schemaFile: SourceFile, { type, ...args }: BuildSchemaArgs): void; export declare function buildOverrideFile(overrideFile: SourceFile, schemaFile: SourceFile, { type, ...args }: BuildSchemaArgs): void;