@koine/utils 2.0.0-alpha.4 → 2.0.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/index.d.ts +2 -2
  2. package/index.mjs +1 -1
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -34,7 +34,7 @@ export { getNonce } from "./getNonce";
34
34
  export { getParamAmong } from "./getParamAmong";
35
35
  export { getParamAsInt } from "./getParamAsInt";
36
36
  export { getParamAsString } from "./getParamAsString";
37
- export { getType } from "./getType";
37
+ export { type AnyClass, type AnyAsyncFunction, type AnyFunction, type PlainObject, type TypeGuard, getType, } from "./getType";
38
38
  export { getUrlHashParams } from "./getUrlHashParams";
39
39
  export { getUrlHashPathname } from "./getUrlHashPathname";
40
40
  export { getUrlPathnameParts } from "./getUrlPathnameParts";
@@ -130,5 +130,5 @@ export { uppercase } from "./uppercase";
130
130
  export { uuid } from "./uuid";
131
131
  export { uuidNumeric } from "./uuidNumeric";
132
132
  export { wait } from "./wait";
133
- export type { AnythingFalsy } from "./types";
133
+ export type { AnythingFalsy, KeysStartsWith, KeysTailsStartsWith, PickStartsWith, PickStartsWithTails, } from "./types";
134
134
  export type { Primitive, Class, Constructor, TypedArray, Observer, ObservableLike, Except, Writable, Merge, MergeDeep, MergeExclusive, RequireAtLeastOne, RequireExactlyOne, RequireAllOrNone, RemoveIndexSignature, PartialDeep, ReadonlyDeep, LiteralUnion, Opaque, InvariantOf, SetOptional, SetRequired, ValueOf, ConditionalKeys, ConditionalPick, ConditionalExcept, UnionToIntersection, LiteralToPrimitive, Stringified, IterableElement, Entry, Exact, Entries, SetReturnType, Simplify, Get, StringKeyOf, Schema, Jsonify, JsonPrimitive, JsonObject, JsonArray, JsonValue, Promisable, AsyncReturnType, Asyncify, Trim, Split, Includes, Join, LastArrayElement, FixedLengthArray, MultidimensionalArray, MultidimensionalReadonlyArray, PositiveInfinity, NegativeInfinity, Finite, Integer, Float, NegativeFloat, Negative, NonNegative, NegativeInteger, NonNegativeInteger, CamelCase, CamelCasedProperties, CamelCasedPropertiesDeep, KebabCase, KebabCasedProperties, KebabCasedPropertiesDeep, PascalCase, PascalCasedProperties, PascalCasedPropertiesDeep, SnakeCase, SnakeCasedProperties, SnakeCasedPropertiesDeep, ScreamingSnakeCase, DelimiterCase, DelimiterCasedProperties, DelimiterCasedPropertiesDeep, PackageJson, TsConfigJson, SetNonNullable, Spread, PartialOnUndefinedDeep, OptionalKeysOf, HasOptionalKeys, RequiredKeysOf, HasRequiredKeys, UnwrapOpaque, EmptyObject, IsEmptyObject, TupleToUnion, OmitIndexSignature, PickIndexSignature, ConditionalPickDeep, } from "type-fest";
package/index.mjs CHANGED
@@ -34,7 +34,7 @@ export { getNonce } from "./getNonce";
34
34
  export { getParamAmong } from "./getParamAmong";
35
35
  export { getParamAsInt } from "./getParamAsInt";
36
36
  export { getParamAsString } from "./getParamAsString";
37
- export { getType } from "./getType";
37
+ export { getType, } from "./getType";
38
38
  export { getUrlHashParams } from "./getUrlHashParams";
39
39
  export { getUrlHashPathname } from "./getUrlHashPathname";
40
40
  export { getUrlPathnameParts } from "./getUrlPathnameParts";
package/package.json CHANGED
@@ -11,6 +11,6 @@
11
11
  },
12
12
  "main": "./index.js",
13
13
  "types": "./index.d.ts",
14
- "version": "2.0.0-alpha.4",
14
+ "version": "2.0.0-beta.2",
15
15
  "module": "./index.mjs"
16
16
  }