import { Schema as S } from "@effect/schema";
const A = S.Struct({ a: S.String }).pipe(S.filter(() => true)).annotations({ identifier: "A" });
const B = S.Struct({ b: S.String }).annotations({ identifier: "B" });
const C = S.extend(A, B).annotations({ identifier: "C" });
import { Schema as S } from "@effect/schema";
const A = S.Struct({ a: S.String }).pipe(S.filter(() => true)).annotations({ identifier: "A" });
const B = S.Struct({ b: S.String }).annotations({ identifier: "B" });
const C = S.extend(A, B).annotations({ identifier: "C" });