apim-developer-portal2
Version:
API management developer portal
29 lines (23 loc) • 604 B
text/typescript
import { Contract } from "@paperbits/common";
import { HyperlinkContract } from "@paperbits/common/editing";
/**
* API list widget contract.
*/
export interface ListOfApisContract extends Contract {
/**
* API list layout.
*/
itemStyleView?: string;
/**
* Indicated that an APIs can be selected.
*/
allowSelection: boolean;
/**
* Default GroupByTag to enabled.
*/
defaultGroupByTagToEnabled?: boolean;
/**
* Link to a page that contains API details.
*/
detailsPageHyperlink?: HyperlinkContract;
}