Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F105092405
index.d.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Mar 14, 17:04
Size
546 B
Mime Type
text/x-java
Expires
Sun, Mar 16, 17:04 (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
24917712
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
index.d.ts
View Options
/**
Colored symbols for various log levels.
Includes fallbacks for Windows CMD which only supports a [limited character set](https://en.wikipedia.org/wiki/Code_page_437).
@example
```
import logSymbols = require('log-symbols');
console.log(logSymbols.success, 'Finished successfully!');
// On good OSes: ✔ Finished successfully!
// On Windows: √ Finished successfully!
```
*/
declare const logSymbols: {
readonly info: string;
readonly success: string;
readonly warning: string;
readonly error: string;
};
export = logSymbols;
Event Timeline
Log In to Comment