parent
f62a315a7b
commit
3f6bdf6fcb
@ -0,0 +1,8 @@
|
||||
import { IPageBorderOption } from '../../interface/PageBorder'
|
||||
|
||||
export const defaultPageBorderOption: Readonly<Required<IPageBorderOption>> = {
|
||||
color: '#000000',
|
||||
lineWidth: 1,
|
||||
padding: [0, 5, 0, 5],
|
||||
disabled: true
|
||||
}
|
||||
@ -0,0 +1,8 @@
|
||||
import { IPadding } from './Common'
|
||||
|
||||
export interface IPageBorderOption {
|
||||
color?: string
|
||||
lineWidth?: number
|
||||
padding?: IPadding
|
||||
disabled?: boolean
|
||||
}
|
||||
Loading…
Reference in new issue