@serenity-is/corelib
Version:
Serenity Core Library
9 lines (7 loc) • 309 B
text/typescript
import { interfaceTypeInfo, nsSerenity, PropertyItem, registerType } from "../base";
export class IGetEditValue {
static [Symbol.typeInfo] = interfaceTypeInfo(nsSerenity); static { registerType(this); }
}
export interface IGetEditValue {
getEditValue(property: PropertyItem, target: any): void;
}