本文整理汇总了TypeScript中xstream.of函数的典型用法代码示例。如果您正苦于以下问题:TypeScript of函数的具体用法?TypeScript of怎么用?TypeScript of使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了of函数的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: stringDriver
function stringDriver(sink: Stream<string>) {
return xs.of('b');
}
示例2: driver
function driver(sink: Stream<string>) {
return xs.of('b').debug(spy);
}
示例3: main
function main(sources: {history: Stream<Location>}) {
return {
history: xs.of({type: 'replace', pathname: '/test'}),
};
}
示例4:
.map(x => (x === 1 ? xs.of(div()) : child.DOM))
示例5: app
function app(sources: {DOM: MainDOMSource}) {
const vtree$ = xs.of(h3('.top-most'));
return {
DOM: sources.DOM.isolateSink(vtree$, 'foo'),
};
}
示例6: app
function app(_sources: {DOM: MainDOMSource}) {
return {
DOM: xs.of(div()),
};
}
示例7: app
function app(sources: {DOM: MainDOMSource}) {
return {
DOM: xs.of(h3('.myelementclass', 'Foobar')),
};
}