UNPKG
the-odds-api
Version:
latest (2.1.0)
2.1.0
2.0.0
1.0.0
The Odds API Implementation in NodeJs
github.com/NearHuscarl/the-odds-api
NearHuscarl/the-odds-api
the-odds-api
/
dist
/
helpers
/
createFile.d.ts
8 lines
(7 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
/** * Create file with content. `filepath` and parent dir will be created recursively if not exist *
@param
filepath
*
@param
content
*/
declare
const
createFile
:
(
filepath
:
string
,
content
?:
string
) =>
Promise
<
void
>;
export
default
createFile;