15 lines
277 B
TypeScript
15 lines
277 B
TypeScript
import { LineStyle } from "lightweight-charts";
|
|
|
|
|
|
export interface DrawingOptions {
|
|
lineColor: string;
|
|
lineStyle: LineStyle
|
|
width: number;
|
|
}
|
|
|
|
export const defaultOptions: DrawingOptions = {
|
|
lineColor: '#1E80F0',
|
|
lineStyle: LineStyle.Solid,
|
|
width: 4,
|
|
};
|