INTERFACE

ExtensionView

ExtensionView is the interface which every anchor-specific extension view extends from.

link GraphQL Schema definition

1interface ExtensionView {
2
3# Relative path of the HTML file to load for this view, used by devsite to specify
4# the layout of assets.
5viewerPath: String!
6
7# The URL which should be loaded in for the extension.
8viewerURL: String!
9
10}