19 lines
425 B
TypeScript
19 lines
425 B
TypeScript
// This file is auto-generated. Do not edit manually.
|
|
import * as S from 'effect/Schema';
|
|
|
|
export const Output = S.Union(
|
|
S.Array(S.Unknown),
|
|
S.Boolean,
|
|
S.Number,
|
|
S.Unknown,
|
|
S.Unknown,
|
|
S.String,
|
|
S.String,
|
|
);
|
|
export type Output = S.Schema.Type<typeof Output>;
|
|
|
|
export const MicrosoftDSCDebugEcho = S.Struct({
|
|
output: Output,
|
|
});
|
|
export type MicrosoftDSCDebugEcho = S.Schema.Type<typeof MicrosoftDSCDebugEcho>;
|