File tree 1 file changed +5
-7
lines changed
1 file changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -8,32 +8,30 @@ class FileInfo {
8
8
* @returns {string } Base name of the file
9
9
*/
10
10
name ( ) { }
11
+
11
12
/**
12
13
* @since 1.0.0
13
14
* @returns {string } Length in bytes for regular files; system-dependent for others
14
15
*/
15
16
size ( ) { }
17
+
16
18
/**
17
19
* @since 1.0.0
18
- * @todo FIXME: Document FileMode or change to number
19
- * @returns {FileMode } File mode bits
20
+ * @returns {number } [File mode bits](https://en.wikipedia.org/wiki/Chmod#Numerical_permissions)
20
21
*/
21
22
mode ( ) { }
23
+
22
24
/**
23
25
* @since 1.0.0
24
26
* @returns {Date } Modification time
25
27
*/
26
28
modTime ( ) { }
29
+
27
30
/**
28
31
* @since 1.0.0
29
32
* @returns {boolean } Returns if the file is a directory
30
33
*/
31
34
isDir ( ) { }
32
- // FIXME: What is returned here exactly?
33
- // /**
34
- // * @returns {object } Underlying data source (can return nil)
35
- // */
36
- // sys() { }
37
35
}
38
36
39
37
/**
You can’t perform that action at this time.
0 commit comments