You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
322 B

import { ILineNumberOption } from '../../interface/LineNumber'
import { LineNumberType } from '../enum/LineNumber'
export const defaultLineNumberOption: Readonly<Required<ILineNumberOption>> = {
size: 12,
font: 'Microsoft YaHei',
color: '#000000',
disabled: true,
right: 20,
type: LineNumberType.CONTINUITY
}