本文整理汇总了TypeScript中mithril/stream.Stream类的典型用法代码示例。如果您正苦于以下问题:TypeScript Stream类的具体用法?TypeScript Stream怎么用?TypeScript Stream使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Stream类的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: stream
{
const s = stream(1);
const initialValue = s();
s(2);
const newValue = s();
console.assert(initialValue === 1);
console.assert(newValue === 2);
}
{
const s = stream();
console.assert(s() === undefined);
}
{
const s: Stream<number | undefined> = stream(1);
s(undefined);
console.assert(s() === undefined);
}
{
const s = stream(stream(1));
console.assert(s()() === 1);
}
{
const s = stream();
const doubled = stream.combine(s => s() * 2, [s]);
s(2);
console.assert(doubled() === 4);
}
示例2: toJSON
toJSON() {
return {
name: this.name(),
type: RoleType[this.type()],
attributes: this.attributes.toJSON()
};
}
示例3: toJSON
toJSON() {
return {
id: this.id(),
plugin_id: this.pluginId(),
properties: this.properties.toJSON()
};
}