9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
|
export type IndentJSON = {
|
||
|
start: number;
|
||
|
end: number | null;
|
||
|
specialIndent: {
|
||
|
type: "firstLine" | "hanging";
|
||
|
val: number;
|
||
|
} | null;
|
||
|
};
|