mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2026-04-18 23:38:35 +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;
|
|
}
|