You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Sets the units for columns that contain a byte-size value.
102
+
* Note that byte-size value units work in terms of powers of 1024. For instance `1kb` means 1024 bytes, not 1000 bytes.
103
+
* If omitted, byte-size values are rendered with a suffix such as `kb`, `mb`, or `gb`, chosen such that the numeric value of the column is as small as possible whilst still being at least `1.0`.
104
+
* If given, byte-size values are rendered as an integer with no suffix, representing the value of the column in the chosen unit.
105
+
* Values that are not an exact multiple of the chosen unit are rounded down.
106
+
*/
107
+
bytes?: 'b'|'kb'|'mb'|'gb'|'tb'|'pb'
108
+
/**
109
+
* Sets the units for columns that contain a size value which is not a byte-size value.
110
+
* If omitted, size values are rendered with a suffix such as `k`, `m`, or `g`, chosen such that the numeric value of the column is as small as possible whilst still being at least `1.0`.
111
+
* If given, size values are rendered as an integer with no suffix, representing the value of the column in the chosen unit.
112
+
* Values that are not an exact multiple of the chosen unit are rounded down.
113
+
*/
114
+
size?: ''|'k'|'m'|'g'|'t'|'p'
115
+
/**
116
+
* Sets the units for columns that contain a time duration.
117
+
* If omitted, time duration values are rendered with a suffix such as `ms`, `s`, `m` or `h`, chosen such that the numeric value of the column is as small as possible whilst still being at least `1.0`.
118
+
* If given, time duration values are rendered as an integer with no suffix.
119
+
* Values that are not an exact multiple of the chosen unit are rounded down.
0 commit comments