- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
17 lines
518 B
TypeScript
17 lines
518 B
TypeScript
import * as fs from './adapters/fs';
|
|
export interface Options {
|
|
followSymbolicLink?: boolean;
|
|
fs?: Partial<fs.FileSystemAdapter>;
|
|
markSymbolicLink?: boolean;
|
|
throwErrorOnBrokenSymbolicLink?: boolean;
|
|
}
|
|
export default class Settings {
|
|
private readonly _options;
|
|
readonly followSymbolicLink: boolean;
|
|
readonly fs: fs.FileSystemAdapter;
|
|
readonly markSymbolicLink: boolean;
|
|
readonly throwErrorOnBrokenSymbolicLink: boolean;
|
|
constructor(_options?: Options);
|
|
private _getValue;
|
|
}
|