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