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