API: Allow ns.read to read .msg and .lit files (#2455)

This commit is contained in:
catloversg
2026-01-26 11:32:44 +07:00
committed by GitHub
parent 2edad3ed37
commit 5f519991a6
3 changed files with 28 additions and 5 deletions

View File

@@ -7862,10 +7862,13 @@ export interface NS {
* @remarks
* RAM cost: 0 GB
*
* This function is used to read data from a text file (.txt, .json, .css) or script (.js, .jsx, .ts, .tsx).
* This function is used to read data from a text file (.txt, .json, .css), a script (.js, .jsx, .ts, .tsx), a
* literature file (.lit), or a message (.msg).
*
* This function will return the data in the specified file.
* If the file does not exist, an empty string will be returned.
* This function will return the data in the specified file. If the file does not exist, an empty string will be
* returned.
*
* With literature files, the returned data is a raw HTML string.
*
* @param filename - Name of the file to be read.
* @returns Data in the specified text file.