* @caution Can only be used when `dimensionOmitted: true`. * * Notice: may return `null`/`undefined` if user not specify dimension names.
(dimIndex: DimensionIndex)
| 112 | * Notice: may return `null`/`undefined` if user not specify dimension names. |
| 113 | */ |
| 114 | getSourceDimension(dimIndex: DimensionIndex): DimensionDefinition { |
| 115 | const dimensionsDefine = this.source.dimensionsDefine; |
| 116 | if (dimensionsDefine) { |
| 117 | return dimensionsDefine[dimIndex]; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | makeStoreSchema(): { |
| 122 | dimensions: DataStoreDimensionDefine[]; |
no outgoing calls
no test coverage detected