Big news!Introducing Socket AI - ChatGPT-Powered Threat Analysis. Learn more
Socket
Log inDemoInstall

@types/adeira__js

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Issues
File Explorer

Advanced tools

@types/adeira__js

TypeScript definitions for @adeira/js

    2.1.0ts3.7ts3.8ts3.9ts4.0ts4.1ts4.2ts4.3ts4.4ts4.5ts4.6ts4.7ts4.8ts4.9ts5.0ts5.1latest
    GitHub

Version published
Maintainers
1
Weekly downloads
725
decreased by-37.28%

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 definitions for @adeira/js 2.1 // Project: https://github.com/adeira/universe/tree/master/src/js // Definitions by: Martin Zlámal <https://github.com/mrtnzlml> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // Minimum TypeScript Version: 3.7 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: Sat, 03 Jul 2021 14:31:17 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Martin Zlámal.

FAQs

Last updated on 03 Jul 2021

Did you know?

Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.

Install Socket
Socket
support@socket.devSocket SOC 2 Logo

Product

  • Package Issues
  • 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