suf-node
Version:
node utility functions.
79 lines (53 loc) • 1.54 kB
Markdown
<span id="DOC_GENERATION_MARKER_0"></span>
# SUF Node
- **[I:\GitHub\suf-node\lib\consoleUtils.d.ts](#i:\github\suf-node\lib\consoleutils.d.ts)**
- [readConsole](#readconsole)
- [getYNAnswer](#getynanswer)
- **[I:\GitHub\suf-node\lib\fsUtils.d.ts](#i:\github\suf-node\lib\fsutils.d.ts)**
- [Walk](#walk)
- [Exits](#exits)
- **[I:\GitHub\suf-node\lib\execUtils.d.ts](#i:\github\suf-node\lib\executils.d.ts)**
- [ExecOptions](#execoptions)
- [ExecOut](#execout)
- [Exec](#exec)
### I:\GitHub\suf-node\lib\consoleUtils.d.ts
##### readConsole
```typescript
function readConsole(): Promise<string>;
```
##### getYNAnswer
```typescript
function getYNAnswer(defaultAnswer?: boolean): Promise<boolean>;
```
### I:\GitHub\suf-node\lib\fsUtils.d.ts
##### Walk
```typescript
function Walk(dir: string): Promise<string[]>;
```
##### Exits
```typescript
function Exits(path: string): Promise<boolean>;
```
### I:\GitHub\suf-node\lib\execUtils.d.ts
##### ExecOptions
```typescript
interface ExecOptions {
linkStdout?: boolean;
}
```
##### ExecOut
```typescript
interface ExecOut {
stdout: string;
stderr: string;
}
```
##### Exec
```typescript
function Exec(command: string, options?: ExecOptions): Promise<ExecOut>;
```
_Generated with_ **[suf-cli](https://www.npmjs.com/package/suf-cli)**
<span id="DOC_GENERATION_MARKER_1"></span>
<span id="LICENSE_GENERATION_MARKER_0"></span>
Copyright (c) 2020 Leonard Grosoli Licensed under the MIT license.
<span id="LICENSE_GENERATION_MARKER_1"></span>