Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
navigation-api-types
Advanced tools
Type definition for Navigation API
$ npm i -D navigation-api-types
Add a TypesScript triple-slash directive as follows in any code-containing '.ts' file you want these types to be available in:
// Add types for window.navigation for use in this file. See https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-types- for more info.
/// <reference types="navigation-api-types" />
console.log(window.navigation) // no type error!
Create a .d.ts
file anywhere in your project so that it is visible to TypeScript according to your tsconfig.json
settings. For
example, it could be at src/global.d.ts
or src/navigation-api-types.d.ts
.
Add a TypesScript triple-slash directive as follows:
// Add types for window.navigation ambiently for implicit use in the entire project. See https://www.typescriptlang.org/docs/handbook/triple-slash-directives.html#-reference-types- for more info.
/// <reference types="navigation-api-types" />
This exposes the types ambiently so they are available without any import
or require
statements. TypeScript will simply know about them everywhere.
Important: do not add any import
or export
statements to this file, or it will stop working ambiently. Doing that
changes it in TypeScript's view from a "script" to a "module", and the rules about ambient types change in that case.
This project is licensed under the MIT License.
FAQs
Type definition for the Navigation API
The npm package navigation-api-types receives a total of 9,933 weekly downloads. As such, navigation-api-types popularity was classified as popular.
We found that navigation-api-types demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.