File size: 360 Bytes
3e05655
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
export * as ConfigPluginV1 from "./plugin"

import { Schema } from "effect"

export const Options = Schema.Record(Schema.String, Schema.Unknown)
export type Options = Schema.Schema.Type<typeof Options>

export const Spec = Schema.Union([Schema.String, Schema.mutable(Schema.Tuple([Schema.String, Options]))])
export type Spec = Schema.Schema.Type<typeof Spec>