| 53 | export type EncodingRule = { test?: string } & NumericValueRef; |
| 54 | |
| 55 | export interface InnerScope { |
| 56 | id?: number; |
| 57 | titles?: Titles; |
| 58 | facetScope?: Scope; //TODO add counts |
| 59 | mark?: Mark; |
| 60 | globalScales?: GlobalScales; |
| 61 | encodingRuleMap?: { [key: string]: EncodingRule[] }; |
| 62 | sizeSignals: SizeSignals; |
| 63 | offsets: LayoutOffsets; |
| 64 | } |
| 65 | |
| 66 | export type Orientation = 'horizontal' | 'vertical'; |
| 67 |
nothing calls this directly
no outgoing calls
no test coverage detected