FileSystemFile
attributes
It is of the type FileAttributes.
It may also be nil.
contents
It is of the type string.
kind
It is always the string file.
Luau Type
This is the luau type for FileSystemFile. It may help clear up mistranslations from the raw data to the wiki page (as it is an automatic process).
export type FileSystemFile = {
kind: "file",
attributes: FileAttributes?,
contents: string,
}