UNPKG

@serenity-is/corelib

Version:
9 lines (7 loc) 309 B
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; }