本文整理汇总了TypeScript中zen-observable.of函数的典型用法代码示例。如果您正苦于以下问题:TypeScript of函数的具体用法?TypeScript of怎么用?TypeScript of使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了of函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: expect
const link = returnOne.concat(mock).concat(op => {
expect(op.getContext()).toEqual({
add: 3,
substract: 1,
});
return Observable.of({ data: op.getContext().add });
});
示例2: ApolloLink
const link = new ApolloLink(op => {
expect(operation['operationName']).toBeUndefined();
expect(operation['variables']).toBeUndefined();
expect(operation['context']).toBeUndefined();
expect(operation['extensions']).toBeUndefined();
expect(op['operationName']).toBeDefined();
expect(op['variables']).toBeDefined();
expect(op['context']).toBeUndefined();
expect(op['extensions']).toBeDefined();
expect(op.toKey()).toBeDefined();
return Observable.of();
});
示例3:
operation => Observable.of({ data: { count: 2 } }),
示例4:
.flatMap(val => Observable.of(val.toString()))
示例5: MockLink
new MockLink((operation, forward) =>
Observable.of({ data: { count: 2 } }),