UNPKG

@serenity-is/corelib

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