/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { Color } from './Color'; import { ColorStyle } from './ColorStyle'; export interface EmbeddedObjectBorder { /** * The color of the border. */ color: Color; /** * The color of the border. If color is also set, this field takes precedence. */ colorStyle: ColorStyle; } //# sourceMappingURL=EmbeddedObjectBorder.d.ts.map