- fixed Year-Prefix Bug in MetricParser - added metric_confidence and metric_proof_text to database - added Entity-Check and Annual-Priority to LLM prompt - improved UI: added confidence traffic light and mouse-over proof tooltip - restored missing API endpoints (create, bulk, wiki-override)
15 lines
249 B
TypeScript
15 lines
249 B
TypeScript
/**
|
|
List of binary file extensions.
|
|
|
|
@example
|
|
```
|
|
import binaryExtensions = require('binary-extensions');
|
|
|
|
console.log(binaryExtensions);
|
|
//=> ['3ds', '3g2', …]
|
|
```
|
|
*/
|
|
declare const binaryExtensions: readonly string[];
|
|
|
|
export = binaryExtensions;
|