Socket
Socket
Sign inDemoInstall

@types/adeira__js

Package Overview
Dependencies
0
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @types/adeira__js

TypeScript definitions for @adeira/js


Version published
Weekly downloads
287
increased by14.34%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Installation

npm install --save @types/adeira__js

Summary

This package contains type definitions for @adeira/js (https://github.com/adeira/universe/tree/master/src/js).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/adeira__js.

index.d.ts

type Maybe<T> = null | undefined | T;

export function invariant(condition: boolean, format: string, ...args: ReadonlyArray<any>): asserts condition;

export function isBrowser(): boolean;

export function isNumeric(value: any): boolean;

export function isObject(value: any): boolean;

export function isObjectEmpty(value: any): boolean;

export function nullthrows<T>(x: Maybe<T>, message?: string): T extends null | undefined ? never : T;

export function sprintf(format: string, ...args: ReadonlyArray<any>): string;

export function warning(condition: boolean, format: string, ...args: ReadonlyArray<any>): void;

export function rangeMap<T>(n: number, fn: (i: number) => T): ReadonlyArray<T>;

export {};

Additional Details

  • Last updated: Tue, 17 Oct 2023 21:12:30 GMT
  • Dependencies: none

Credits

These definitions were written by Martin Zlámal.

FAQs

Last updated on 17 Oct 2023

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc