@types/adeira__js
Advanced tools
Comparing version 2.1.2 to 2.1.3
type Maybe<T> = null | undefined | T; | ||
export function invariant(condition: boolean, format: string, ...args: ReadonlyArray<any>): asserts condition; | ||
export function invariant(condition: boolean, format: string, ...args: readonly any[]): asserts condition; | ||
@@ -15,8 +15,8 @@ export function isBrowser(): boolean; | ||
export function sprintf(format: string, ...args: ReadonlyArray<any>): string; | ||
export function sprintf(format: string, ...args: readonly any[]): string; | ||
export function warning(condition: boolean, format: string, ...args: ReadonlyArray<any>): void; | ||
export function warning(condition: boolean, format: string, ...args: readonly any[]): void; | ||
export function rangeMap<T>(n: number, fn: (i: number) => T): ReadonlyArray<T>; | ||
export function rangeMap<T>(n: number, fn: (i: number) => T): readonly T[]; | ||
export {}; |
{ | ||
"name": "@types/adeira__js", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "TypeScript definitions for @adeira/js", | ||
@@ -23,4 +23,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/adeira__js", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "efdbf895cd6bebf4ce7e1d8d1dd5e8ee1f9de014c569acde74a87242c7f8e6e3", | ||
"typesPublisherContentHash": "3075488a98130bdce98e2504f78b203dbb39e1f47281a01e880840bbf4e643e3", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -13,3 +13,3 @@ # Installation | ||
export function invariant(condition: boolean, format: string, ...args: ReadonlyArray<any>): asserts condition; | ||
export function invariant(condition: boolean, format: string, ...args: readonly any[]): asserts condition; | ||
@@ -26,7 +26,7 @@ export function isBrowser(): boolean; | ||
export function sprintf(format: string, ...args: ReadonlyArray<any>): string; | ||
export function sprintf(format: string, ...args: readonly any[]): string; | ||
export function warning(condition: boolean, format: string, ...args: ReadonlyArray<any>): void; | ||
export function warning(condition: boolean, format: string, ...args: readonly any[]): void; | ||
export function rangeMap<T>(n: number, fn: (i: number) => T): ReadonlyArray<T>; | ||
export function rangeMap<T>(n: number, fn: (i: number) => T): readonly T[]; | ||
@@ -38,3 +38,3 @@ export {}; | ||
### Additional Details | ||
* Last updated: Mon, 06 Nov 2023 22:41:04 GMT | ||
* Last updated: Mon, 20 Nov 2023 23:36:23 GMT | ||
* Dependencies: none | ||
@@ -41,0 +41,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
3951