remove unnecessary type

This commit is contained in:
kakkokari-gtyih 2025-08-02 14:38:40 +09:00
parent e6bce4dcf1
commit 3f8d706c6e
1 changed files with 0 additions and 4 deletions

View File

@ -14,10 +14,6 @@ interface RolePolicyDefItemBase<T = any> {
inputCaption?: string | Component; inputCaption?: string | Component;
} }
export type RolePolicyDefItemBaseDisplayValueGetter = {
displayValue: (value: boolean | number | string, full?: boolean) => string;
};
interface RolePolicyDefItemBoolean extends RolePolicyDefItemBase<boolean> { interface RolePolicyDefItemBoolean extends RolePolicyDefItemBase<boolean> {
type: 'boolean'; type: 'boolean';
} }