|
| 1 | +export type MethodChainSingleParams = []; |
| 2 | + |
| 3 | +export interface IMethodChainSingleResult { |
| 4 | + id: number; |
| 5 | +} |
| 6 | + |
| 7 | +export interface IMethodChainSingleQuery { |
| 8 | + params: MethodChainSingleParams; |
| 9 | + result: IMethodChainSingleResult; |
| 10 | +} |
| 11 | + |
| 12 | +export type MethodChainMultipleParams = []; |
| 13 | + |
| 14 | +export interface IMethodChainMultipleResult { |
| 15 | + id: number; |
| 16 | +} |
| 17 | + |
| 18 | +export interface IMethodChainMultipleQuery { |
| 19 | + params: MethodChainMultipleParams; |
| 20 | + result: IMethodChainMultipleResult; |
| 21 | +} |
| 22 | + |
| 23 | +export type MethodChainWithMapParams = []; |
| 24 | + |
| 25 | +export interface IMethodChainWithMapResult { |
| 26 | + id: number; |
| 27 | +} |
| 28 | + |
| 29 | +export interface IMethodChainWithMapQuery { |
| 30 | + params: MethodChainWithMapParams; |
| 31 | + result: IMethodChainWithMapResult; |
| 32 | +} |
| 33 | + |
| 34 | +export type NestedChainParams = []; |
| 35 | + |
| 36 | +export interface INestedChainResult { |
| 37 | + id: number; |
| 38 | +} |
| 39 | + |
| 40 | +export interface INestedChainQuery { |
| 41 | + params: NestedChainParams; |
| 42 | + result: INestedChainResult; |
| 43 | +} |
| 44 | + |
| 45 | +export type PromiseChainParams = []; |
| 46 | + |
| 47 | +export interface IPromiseChainResult { |
| 48 | + id: number; |
| 49 | +} |
| 50 | + |
| 51 | +export interface IPromiseChainQuery { |
| 52 | + params: PromiseChainParams; |
| 53 | + result: IPromiseChainResult; |
| 54 | +} |
| 55 | + |
| 56 | +export type ArrayChainParams = []; |
| 57 | + |
| 58 | +export interface IArrayChainResult { |
| 59 | + id: number; |
| 60 | +} |
| 61 | + |
| 62 | +export interface IArrayChainQuery { |
| 63 | + params: ArrayChainParams; |
| 64 | + result: IArrayChainResult; |
| 65 | +} |
| 66 | + |
| 67 | +export type ComplexChainParams = []; |
| 68 | + |
| 69 | +export interface IComplexChainResult { |
| 70 | + id: number; |
| 71 | +} |
| 72 | + |
| 73 | +export interface IComplexChainQuery { |
| 74 | + params: ComplexChainParams; |
| 75 | + result: IComplexChainResult; |
| 76 | +} |
| 77 | + |
| 78 | +export type TernaryChainParams = []; |
| 79 | + |
| 80 | +export interface ITernaryChainResult { |
| 81 | + id: number; |
| 82 | +} |
| 83 | + |
| 84 | +export interface ITernaryChainQuery { |
| 85 | + params: TernaryChainParams; |
| 86 | + result: ITernaryChainResult; |
| 87 | +} |
0 commit comments