Gathering detailed insights and metrics for @types/termios-fixedv12
Gathering detailed insights and metrics for @types/termios-fixedv12
Gathering detailed insights and metrics for @types/termios-fixedv12
Gathering detailed insights and metrics for @types/termios-fixedv12
The repository for high quality TypeScript type definitions.
npm install @types/termios-fixedv12
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,050 Stars
89,752 Commits
30,434 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 16, 2025
Latest Version
0.1.0
Package Id
@types/termios-fixedv12@0.1.0
Unpacked Size
5.71 kB
Size
1.99 kB
File Count
5
Published on
Nov 22, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
npm install --save @types/termios-fixedv12
This package contains type definitions for termios-fixedv12 (https://github.com/TKasperczyk/node-termios).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/termios-fixedv12.
1export type iflags = 2 | "IGNBRK" 3 | "BRKINT" 4 | "IGNPAR" 5 | "PARMRK" 6 | "INPCK" 7 | "ISTRIP" 8 | "INLCR" 9 | "IGNCR" 10 | "ICRNL" 11 | "IXON" 12 | "IXOFF" 13 | "IXANY" 14 | "IMAXBEL"; 15export type oflags = "OPOST" | "ONLCR" | "OCRNL" | "ONOCR" | "ONLRET"; 16export type cflags = 17 | "CSIZE" 18 | "CS5" 19 | "CS6" 20 | "CS7" 21 | "CS8" 22 | "CSTOPB" 23 | "CREAD" 24 | "PARENB" 25 | "PARODD" 26 | "HUPCL" 27 | "CLOCAL"; 28export type lflags = 29 | "ECHOKE" 30 | "ECHOE" 31 | "ECHOK" 32 | "ECHO" 33 | "ECHONL" 34 | "ECHOPRT" 35 | "ECHOCTL" 36 | "ISIG" 37 | "ICANON" 38 | "IEXTEN" 39 | "EXTPROC" 40 | "TOSTOP" 41 | "FLUSHO" 42 | "PENDIN" 43 | "NOFLSH"; 44export interface termios { 45 iflag: { [K in iflags]: boolean }; 46 oflag: { [K in oflags]: boolean }; 47 cflag: { [K in cflags]: boolean }; 48 lflag: { [K in lflags]: K extends "EXTPROC" ? boolean | undefined : boolean }; 49 cbaud?: 50 | 0 51 | 50 52 | 75 53 | 110 54 | 134 55 | 150 56 | 200 57 | 300 58 | 600 59 | 1200 60 | 1800 61 | 2400 62 | 4800 63 | 9600 64 | 19200 65 | 38400 66 | 57600 67 | 115200 68 | 230400 69 | 460800 70 | 500000 71 | 576000 72 | 921600 73 | 1000000 74 | 1152000 75 | 1500000 76 | 2000000 77 | 2500000 78 | 3000000 79 | 3500000 80 | 4000000; 81} 82export function setattr( 83 fd: number, 84 attr: { [K in keyof termios]?: K extends "cbaud" ? termios[K] : Partial<termios[K]> }, 85): void; 86export function getattr(fd: number): termios; 87
These definitions were written by 8128-33550336.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-14
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More