Files
ClosedCode/packages/opencode/src/config/layout.ts
T

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"