botbuilder
Version:
Bot Builder is a framework for building rich bots on virtually any platform.
18 lines (13 loc) • 390 B
TypeScript
import { Options } from './filenamify.js';
export { Options } from './filenamify.js';
/**
Convert the filename in a path a valid filename and return the augmented path.
@example
```
import {filenamifyPath} from 'filenamify';
filenamifyPath('foo:bar');
//=> 'foo!bar'
```
*/
declare function filenamifyPath(path: string, options?: Options): string;
export { filenamifyPath as default };