/** * A schemable for determining information entropy of a schema. * * @since 2.0.0 */ import { type Const } from 'fp-ts/Const'; import type * as hkt from 'schemata-ts/internal/schemable'; export type Information = Const; export interface SchemableLambda extends hkt.SchemableLambda { readonly type: Information; } //# sourceMappingURL=information.d.ts.map