import { DbMetadata } from "joist-codegen"; import { Fs } from "./utils"; /** * Generates `*.graphql` files based on the database schema. * * This follows an "evergreen" approach where we upsert changes into files that are also * hand-modified by the programmer. We remember what insertions we've made in a history file, * and will only do them once, which allows programmers to manually add/edit/remove fields * without this stomping over their changes. */ export declare function generateGraphqlSchemaFiles(fs: Fs, dbMeta: DbMetadata): Promise; //# sourceMappingURL=generateGraphqlSchemaFiles.d.ts.map