7 lines
230 B
TypeScript
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"
|