mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-23 09:42:53 +02:00
9 lines
211 B
TypeScript
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;
|
|
}
|