fs Override fsOverride :  {      existsSync :  ( filePath :  string )  =>  boolean ;      promises :  {          mkdir :  (              filePath :  string ,              options ?:  {  recursive :  boolean  } ,          )  =>  Promise < void  |  string > ;          readFile :  ( filePath :  string )  =>  Promise < string  |  Buffer > ;          writeFile :  ( filePath :  string ,  contents :  string  |  Buffer )  =>  Promise < void > ;      } ; } 
Type declaration existsSync :  ( filePath :  string )  =>  boolean promises :  {      mkdir :  (          filePath :  string ,          options ?:  {  recursive :  boolean  } ,      )  =>  Promise < void  |  string > ;      readFile :  ( filePath :  string )  =>  Promise < string  |  Buffer > ;      writeFile :  ( filePath :  string ,  contents :  string  |  Buffer )  =>  Promise < void > ; } mkdir :  ( filePath :  string ,  options ?:  {  recursive :  boolean  } )  =>  Promise < void  |  string > readFile :  ( filePath :  string )  =>  Promise < string  |  Buffer > writeFile :  ( filePath :  string ,  contents :  string  |  Buffer )  =>  Promise < void > 
Options for SecretsJsonFileAdapter.