/** * This file was auto-generated by Fern from our API Definition. */ import * as Flatfile from "../../../index"; /** * Create an app * * @example * { * name: "Nightly Data Loads", * namespace: "nightly-data", * type: Flatfile.AppType.Custom, * entity: "Sync", * entityPlural: "Syncs", * icon: "\n \n", * metadata: { * "foo": "bar" * } * } */ export interface AppCreate { name: string; namespace: string; type: Flatfile.AppType; entity?: string; entityPlural?: string; icon?: string; metadata?: any; environmentFilters?: any; blueprint?: any; }