@types/adeira__js
Advanced tools
Weekly downloads
Readme
npm install --save @types/adeira__js
This package contains type definitions for @adeira/js (https://github.com/adeira/universe/tree/master/src/js).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/adeira__js.
// 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 {};
These definitions were written by Martin Zlámal.
FAQs
TypeScript definitions for @adeira/js
The npm package @types/adeira__js receives a total of 700 weekly downloads. As such, @types/adeira__js popularity was classified as not popular.
We found that @types/adeira__js 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 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.