Files
bitburner-src/src/ScriptEditor/ui/Options.ts
2022-01-04 09:41:44 -05: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;
}