Last change
on this file since 6a3a178 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
518 bytes
|
Line | |
---|
1 | import * as fs from './adapters/fs';
|
---|
2 | export interface Options {
|
---|
3 | followSymbolicLink?: boolean;
|
---|
4 | fs?: Partial<fs.FileSystemAdapter>;
|
---|
5 | markSymbolicLink?: boolean;
|
---|
6 | throwErrorOnBrokenSymbolicLink?: boolean;
|
---|
7 | }
|
---|
8 | export default class Settings {
|
---|
9 | private readonly _options;
|
---|
10 | readonly followSymbolicLink: boolean;
|
---|
11 | readonly fs: fs.FileSystemAdapter;
|
---|
12 | readonly markSymbolicLink: boolean;
|
---|
13 | readonly throwErrorOnBrokenSymbolicLink: boolean;
|
---|
14 | constructor(_options?: Options);
|
---|
15 | private _getValue;
|
---|
16 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.