feat: add separator option #530
parent
15f52c5e43
commit
7416a88151
@ -0,0 +1,6 @@
|
||||
import { ISeparatorOption } from '../../interface/Separator'
|
||||
|
||||
export const defaultSeparatorOption: Readonly<Required<ISeparatorOption>> = {
|
||||
lineWidth: 1,
|
||||
strokeStyle: '#000000'
|
||||
}
|
||||
@ -0,0 +1,4 @@
|
||||
export interface ISeparatorOption {
|
||||
strokeStyle?: string
|
||||
lineWidth?: number
|
||||
}
|
||||
Loading…
Reference in new issue