UNPKG

@serenity-is/corelib

Version:
10 lines (8 loc) 293 B
import { interfaceTypeInfo, nsSerenity, registerType } from "../base"; export class IStringValue { static [Symbol.typeInfo] = interfaceTypeInfo(nsSerenity); static { registerType(this); } } export interface IStringValue { get_value(): string; set_value(value: string): void; }