mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-14 18:10:39 +09:00
11 lines
459 B
TypeScript
11 lines
459 B
TypeScript
|
|
import { z } from "zod";
|
||
|
|
|
||
|
|
export const instanceExperimentalSettingsSchema = z.object({
|
||
|
|
enableIsolatedWorkspaces: z.boolean().default(false),
|
||
|
|
}).strict();
|
||
|
|
|
||
|
|
export const patchInstanceExperimentalSettingsSchema = instanceExperimentalSettingsSchema.partial();
|
||
|
|
|
||
|
|
export type InstanceExperimentalSettings = z.infer<typeof instanceExperimentalSettingsSchema>;
|
||
|
|
export type PatchInstanceExperimentalSettings = z.infer<typeof patchInstanceExperimentalSettingsSchema>;
|