magner
Version:
Universal admin panel magnetic to any backend
9 lines (8 loc) • 356 B
TypeScript
import { MixedChecker } from '../../utils/core/mixed-check';
export interface InnerConditions<ENTITY extends {}> {
disabledCondition: MixedChecker<ENTITY>;
hiddenCondition: MixedChecker<ENTITY>;
readOnlyCondition: MixedChecker<ENTITY>;
changedCondition: MixedChecker<ENTITY>;
hiddenCollectionAddButtonCondition: MixedChecker<ENTITY>;
}