/** * This file was auto-generated by Fern from our API Definition. */ /** * the mode of the job * * @example * Flatfile.JobMode.Foreground * * @example * Flatfile.JobMode.Background * * @example * Flatfile.JobMode.ToolbarBlocking */ export type JobMode = "foreground" | "background" | "toolbarBlocking" | "hidden"; export declare const JobMode: { readonly Foreground: "foreground"; readonly Background: "background"; readonly ToolbarBlocking: "toolbarBlocking"; readonly Hidden: "hidden"; };