jsii-reflect
Version:
strongly-typed reflection library and tools for jsii
11 lines • 367 B
TypeScript
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;
}
//# sourceMappingURL=overridable.d.ts.map