export { lens } from 'lens.ts'; import { LensImpl } from 'lens.ts'; export type Lens = LensImpl & LensProxy; export type LensProxy = { readonly [K in keyof U]: Lens; };