import { IVisitable } from '../IVisitable'; import { INamed } from './INamed'; /** * Any node model that represents an example. This exists because the models for the * OpenAPI 2 and OpenAPI 3 example nodes are mutually exclusive. * @author eric.wittmann@gmail.com * @class */ export interface IExample extends IVisitable, INamed { getValue(): any; setValue(value: any): any; }