neos-script
Version:
[neos-script-sample](https://github.com/rheniumNV/neos-script-sample)
15 lines • 360 B
TypeScript
export type id<T> = string;
export type member<T> = {
value?: T;
id?: id<T>;
} | T;
export declare function Member({ name, id, value, readOnly, idOnly, isRaw, }: {
name: string;
id?: string;
type?: string;
value?: any;
idOnly?: true;
readOnly?: true;
isRaw?: true;
}): any;
//# sourceMappingURL=Member.d.ts.map