diff --git a/docs/data/api.data.ts b/docs/data/api.data.ts index 8c038a869e..cbcd4b2139 100644 --- a/docs/data/api.data.ts +++ b/docs/data/api.data.ts @@ -8,7 +8,6 @@ function isInternalInterface(name) { return ( name === "AutoSpec" || name === "Channel" || - name === "ChannelDomainOptions" || // TODO name === "ChannelTransform" || name === "Context" || name === "Dimensions" || @@ -107,6 +106,8 @@ export default { if (name === "InsetOptions") { allOptions.push({name: property.getName(), context: {name: "mark", href: "features/marks"}}); allOptions.push({name: property.getName(), context: {name: "scale", href: "features/scales"}}); + } else if (name === "ChannelDomainOptions") { + allOptions.push({name: property.getName(), context: {name: "scale", href: "features/scales"}}); } else { const path = index.getRelativePathTo(declaration.getSourceFile()); const href = getHref(name, path);