@leyyo/common 1.3.9 → 1.3.10
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.
|
@@ -6,6 +6,10 @@ export type AnyKey = string | number | symbol;
|
|
|
6
6
|
export type Obj = Object & {};
|
|
7
7
|
export type Dict<T = unknown> = Record<KeyValue, T>;
|
|
8
8
|
export type Arr<T = unknown> = Array<T>;
|
|
9
|
+
export type LangLike = string;
|
|
10
|
+
export type NameLike = string;
|
|
11
|
+
export type KeywordLike = string;
|
|
12
|
+
export type FieldNameLike = string;
|
|
9
13
|
export type KeyLike = string | number;
|
|
10
14
|
export type IdLike = string | number;
|
|
11
15
|
export type IntegerLike = number;
|