/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { Border } from './Border'; export interface Borders { /** * The top border of the cell. */ top: Border; /** * The bottom border of the cell. */ bottom: Border; /** * The left border of the cell. */ left: Border; /** * The right border of the cell. */ right: Border; } //# sourceMappingURL=Borders.d.ts.map