packages/jsii-reflect/lib/overridable.ts (4 lines of code) (raw):
import { Type } from './type';
export interface Overridable {
/**
* The name of the parent type (class or interface) that this entity overrides or implements. If undefined, then
* this entity is the first in it's hierarchy to declare this entity.
*
* @default undefined
*/
overrides?: Type;
}