tty-attr 0.9.0 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/tty-attr.d.ts +4 -6
package/package.json
CHANGED
package/tty-attr.d.ts
CHANGED
|
@@ -22,11 +22,9 @@
|
|
|
22
22
|
** SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
23
23
|
*/
|
|
24
24
|
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
static restoreAttr (): void
|
|
30
|
-
}
|
|
25
|
+
export default class TTYAttr {
|
|
26
|
+
static preserveAttr (): void
|
|
27
|
+
static setRawMode (): void
|
|
28
|
+
static restoreAttr (): void
|
|
31
29
|
}
|
|
32
30
|
|