12 lines
193 B
TypeScript
12 lines
193 B
TypeScript
|
import { Palette } from "./palette"
|
||
|
|
||
|
export type Node = {
|
||
|
content: string;
|
||
|
position: Position;
|
||
|
color: Palette;
|
||
|
}
|
||
|
|
||
|
export type Position = {
|
||
|
line: number;
|
||
|
character: number;
|
||
|
}
|