UNPKG

apim-developer-portal1

Version:

API management developer portal

14 lines (13 loc) 273 B
/** * Entity describing the issue and its potential soultion. */ export interface Hint { /** * Short text defining the issue. */ issue: string; /** * Free text explaning what can be done to resolve this issue. */ suggestion: string; }