Files
bitburner-src/src/ScriptEditor/ui/Options.ts
T
Olivier Gagnon 48f80f25d6 fmt and lint
2022-04-06 19:30:08 -04:00

9 lines
211 B
TypeScript

export type WordWrapOptions = "on" | "off" | "bounded" | "wordWrapColumn";
export interface Options {
theme: string;
insertSpaces: boolean;
fontSize: number;
wordWrap: WordWrapOptions;
vim: boolean;
}