import { pipe, flow } from "effect";
const x = pipe("WEE" as const, (c) => c);
// ^- narrowed to "WEE"
const y = flow((c) => c)("WEE" as const);
// ^- unknown
import { pipe, flow } from "effect";
const x = pipe("WEE" as const, (c) => c);
// ^- narrowed to "WEE"
const y = flow((c) => c)("WEE" as const);
// ^- unknown