Files
cfw-autumn/shared/utils/featureUtils/index.ts
2026-02-04 15:23:38 +00:00

19 lines
579 B
TypeScript

import { isAllocatedFeature } from "@utils/featureUtils/classifyFeature/isAllocatedFeature.js";
import { isConsumableFeature } from "@utils/featureUtils/classifyFeature/isConsumableFeature.js";
import { findFeatureById } from "@utils/featureUtils/findFeatureUtils.js";
export * from "./apiFeatureToDbFeature.js";
export * from "./convertFeatureUtils.js";
export * from "./creditSystemUtils.js";
export * from "./findFeatureUtils.js";
export const featureUtils = {
isConsumable: isConsumableFeature,
isAllocated: isAllocatedFeature,
find: {
byId: findFeatureById,
},
};