Files
zmo-cli/packages/opencode/src/config/layout.ts
2026-05-11 17:14:18 -04:00

7 lines
230 B
TypeScript

import { Schema } from "effect"
export const Layout = Schema.Literals(["auto", "stretch"]).annotate({ identifier: "LayoutConfig" })
export type Layout = Schema.Schema.Type<typeof Layout>
export * as ConfigLayout from "./layout"