alepha
Version:
Easy-to-use modern TypeScript framework for building many kind of applications.
14 lines (11 loc) • 342 B
text/typescript
import { $atom, type Static, z } from "alepha";
export const appEntryOptions = $atom({
name: "alepha.cli.appEntry.options",
schema: z.object({
server: z.text().optional(),
browser: z.text().optional(),
style: z.text().optional(),
}),
default: {},
});
export type AppEntryOptions = Static<typeof appEntryOptions.schema>;