import { HKT } from "@tsplus/stdlib/prelude/HKT"; import { AssociativeCompose } from "@tsplus/stdlib/prelude/AssociativeCompose"; /** * @tsplus type Category */ export type Category = { readonly Law: { readonly Category: "Category"; }; readonly id: () => HKT.Kind; } & AssociativeCompose; //# sourceMappingURL=Category.d.ts.map