Skip to content

Commit 90a5689

Browse files
authored
add API links for the ChannelDomainOptions options: reduce, order, reverse, and limit (#2294)
1 parent 1b7e76a commit 90a5689

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/data/api.data.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ function isInternalInterface(name) {
88
return (
99
name === "AutoSpec" ||
1010
name === "Channel" ||
11-
name === "ChannelDomainOptions" || // TODO
1211
name === "ChannelTransform" ||
1312
name === "Context" ||
1413
name === "Dimensions" ||
@@ -107,6 +106,8 @@ export default {
107106
if (name === "InsetOptions") {
108107
allOptions.push({name: property.getName(), context: {name: "mark", href: "features/marks"}});
109108
allOptions.push({name: property.getName(), context: {name: "scale", href: "features/scales"}});
109+
} else if (name === "ChannelDomainOptions") {
110+
allOptions.push({name: property.getName(), context: {name: "scale", href: "features/scales"}});
110111
} else {
111112
const path = index.getRelativePathTo(declaration.getSourceFile());
112113
const href = getHref(name, path);

0 commit comments

Comments
 (0)