@@ -2,7 +2,7 @@ import type {ChannelDomainSort, Channels, ChannelValue, ChannelValues, ChannelVa
2
2
import type { Context } from "./context.js" ;
3
3
import type { Dimensions } from "./dimensions.js" ;
4
4
import type { plot } from "./plot.js" ;
5
- import type { ScaleFunctions } from "./scales.js" ;
5
+ import type { InstanciatedScales } from "./scales.js" ;
6
6
import type { InitializerFunction , SortOrder , TransformFunction } from "./transforms/basic.js" ;
7
7
8
8
/**
@@ -40,8 +40,8 @@ export type Data = Iterable<any> | ArrayLike<any>;
40
40
export type RenderFunction = (
41
41
/** The mark’s (filtered and transformed) index. */
42
42
index : number [ ] ,
43
- /** The plot’s scale functions . */
44
- scales : ScaleFunctions ,
43
+ /** The plot’s instanciated scales . */
44
+ scales : InstanciatedScales ,
45
45
/** The mark’s (possibly scaled and transformed) channel values. */
46
46
values : ChannelValues ,
47
47
/** The plot’s dimensions. */
@@ -459,5 +459,5 @@ export class RenderableMark extends Mark {
459
459
/** A compound Mark, comprising other marks. */
460
460
export type CompoundMark = Markish [ ] & Pick < Mark , "plot" > ;
461
461
462
- /** Given an array of marks, returns a compound mark; supports *mark.plot shorthand. */
462
+ /** Given an array of marks, returns a compound mark; supports *mark* .plot shorthand. */
463
463
export function marks ( ...marks : Markish [ ] ) : CompoundMark ;
0 commit comments