@mionjs/type-formats 0.8.0-alpha.0
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.
- package/.dist/cjs/BigintFormats.cjs +14 -0
- package/.dist/cjs/BigintFormats.cjs.map +1 -0
- package/.dist/cjs/BigintFormats.d.ts +2 -0
- package/.dist/cjs/NumberFormats.cjs +20 -0
- package/.dist/cjs/NumberFormats.cjs.map +1 -0
- package/.dist/cjs/NumberFormats.d.ts +2 -0
- package/.dist/cjs/StringFormats.cjs +120 -0
- package/.dist/cjs/StringFormats.cjs.map +1 -0
- package/.dist/cjs/StringFormats.d.ts +11 -0
- package/.dist/cjs/constants.d.ts +1 -0
- package/.dist/cjs/package.json +1 -0
- package/.dist/cjs/src/bigint/bigIntFormat.runtype.cjs +152 -0
- package/.dist/cjs/src/bigint/bigIntFormat.runtype.cjs.map +1 -0
- package/.dist/cjs/src/bigint/bigIntFormat.runtype.d.ts +21 -0
- package/.dist/cjs/src/bigint/defaultBigNumberFormats.cjs +16 -0
- package/.dist/cjs/src/bigint/defaultBigNumberFormats.cjs.map +1 -0
- package/.dist/cjs/src/bigint/defaultBigNumberFormats.d.ts +29 -0
- package/.dist/cjs/src/constants.cjs +34 -0
- package/.dist/cjs/src/constants.cjs.map +1 -0
- package/.dist/cjs/src/constants.d.ts +15 -0
- package/.dist/cjs/src/constants.mock.cjs +111 -0
- package/.dist/cjs/src/constants.mock.cjs.map +1 -0
- package/.dist/cjs/src/constants.mock.d.ts +335 -0
- package/.dist/cjs/src/number/defaultNumberFormats.cjs +28 -0
- package/.dist/cjs/src/number/defaultNumberFormats.cjs.map +1 -0
- package/.dist/cjs/src/number/defaultNumberFormats.d.ts +63 -0
- package/.dist/cjs/src/number/numberFormat.runtype.cjs +214 -0
- package/.dist/cjs/src/number/numberFormat.runtype.cjs.map +1 -0
- package/.dist/cjs/src/number/numberFormat.runtype.d.ts +21 -0
- package/.dist/cjs/src/string/date.runtype.cjs +88 -0
- package/.dist/cjs/src/string/date.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/date.runtype.d.ts +19 -0
- package/.dist/cjs/src/string/dateTime.runtype.cjs +83 -0
- package/.dist/cjs/src/string/dateTime.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/dateTime.runtype.d.ts +26 -0
- package/.dist/cjs/src/string/defaultStringFormats.runtype.cjs +25 -0
- package/.dist/cjs/src/string/defaultStringFormats.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/defaultStringFormats.runtype.d.ts +45 -0
- package/.dist/cjs/src/string/domain.runtype.cjs +248 -0
- package/.dist/cjs/src/string/domain.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/domain.runtype.d.ts +72 -0
- package/.dist/cjs/src/string/email.runtype.cjs +159 -0
- package/.dist/cjs/src/string/email.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/email.runtype.d.ts +57 -0
- package/.dist/cjs/src/string/ip.runtype.cjs +72 -0
- package/.dist/cjs/src/string/ip.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/ip.runtype.d.ts +50 -0
- package/.dist/cjs/src/string/stringFormat.runtype.cjs +270 -0
- package/.dist/cjs/src/string/stringFormat.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/stringFormat.runtype.d.ts +21 -0
- package/.dist/cjs/src/string/time.runtype.cjs +100 -0
- package/.dist/cjs/src/string/time.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/time.runtype.d.ts +21 -0
- package/.dist/cjs/src/string/url.runtype.cjs +160 -0
- package/.dist/cjs/src/string/url.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/url.runtype.d.ts +81 -0
- package/.dist/cjs/src/string/uuid.runtype.cjs +44 -0
- package/.dist/cjs/src/string/uuid.runtype.cjs.map +1 -0
- package/.dist/cjs/src/string/uuid.runtype.d.ts +22 -0
- package/.dist/cjs/src/type-formats-pure-fns.cjs +390 -0
- package/.dist/cjs/src/type-formats-pure-fns.cjs.map +1 -0
- package/.dist/cjs/src/type-formats-pure-fns.d.ts +27 -0
- package/.dist/cjs/src/utils.cjs +14 -0
- package/.dist/cjs/src/utils.cjs.map +1 -0
- package/.dist/cjs/src/utils.d.ts +3 -0
- package/.dist/cjs/vitest.config.d.ts +2 -0
- package/.dist/esm/BigintFormats.d.ts +2 -0
- package/.dist/esm/BigintFormats.js +14 -0
- package/.dist/esm/BigintFormats.js.map +1 -0
- package/.dist/esm/NumberFormats.d.ts +2 -0
- package/.dist/esm/NumberFormats.js +20 -0
- package/.dist/esm/NumberFormats.js.map +1 -0
- package/.dist/esm/StringFormats.d.ts +11 -0
- package/.dist/esm/StringFormats.js +120 -0
- package/.dist/esm/StringFormats.js.map +1 -0
- package/.dist/esm/constants.d.ts +1 -0
- package/.dist/esm/src/bigint/bigIntFormat.runtype.d.ts +21 -0
- package/.dist/esm/src/bigint/bigIntFormat.runtype.js +152 -0
- package/.dist/esm/src/bigint/bigIntFormat.runtype.js.map +1 -0
- package/.dist/esm/src/bigint/defaultBigNumberFormats.d.ts +29 -0
- package/.dist/esm/src/bigint/defaultBigNumberFormats.js +16 -0
- package/.dist/esm/src/bigint/defaultBigNumberFormats.js.map +1 -0
- package/.dist/esm/src/constants.d.ts +15 -0
- package/.dist/esm/src/constants.js +34 -0
- package/.dist/esm/src/constants.js.map +1 -0
- package/.dist/esm/src/constants.mock.d.ts +335 -0
- package/.dist/esm/src/constants.mock.js +111 -0
- package/.dist/esm/src/constants.mock.js.map +1 -0
- package/.dist/esm/src/number/defaultNumberFormats.d.ts +63 -0
- package/.dist/esm/src/number/defaultNumberFormats.js +28 -0
- package/.dist/esm/src/number/defaultNumberFormats.js.map +1 -0
- package/.dist/esm/src/number/numberFormat.runtype.d.ts +21 -0
- package/.dist/esm/src/number/numberFormat.runtype.js +214 -0
- package/.dist/esm/src/number/numberFormat.runtype.js.map +1 -0
- package/.dist/esm/src/string/date.runtype.d.ts +19 -0
- package/.dist/esm/src/string/date.runtype.js +88 -0
- package/.dist/esm/src/string/date.runtype.js.map +1 -0
- package/.dist/esm/src/string/dateTime.runtype.d.ts +26 -0
- package/.dist/esm/src/string/dateTime.runtype.js +83 -0
- package/.dist/esm/src/string/dateTime.runtype.js.map +1 -0
- package/.dist/esm/src/string/defaultStringFormats.runtype.d.ts +45 -0
- package/.dist/esm/src/string/defaultStringFormats.runtype.js +25 -0
- package/.dist/esm/src/string/defaultStringFormats.runtype.js.map +1 -0
- package/.dist/esm/src/string/domain.runtype.d.ts +72 -0
- package/.dist/esm/src/string/domain.runtype.js +248 -0
- package/.dist/esm/src/string/domain.runtype.js.map +1 -0
- package/.dist/esm/src/string/email.runtype.d.ts +57 -0
- package/.dist/esm/src/string/email.runtype.js +159 -0
- package/.dist/esm/src/string/email.runtype.js.map +1 -0
- package/.dist/esm/src/string/ip.runtype.d.ts +50 -0
- package/.dist/esm/src/string/ip.runtype.js +72 -0
- package/.dist/esm/src/string/ip.runtype.js.map +1 -0
- package/.dist/esm/src/string/stringFormat.runtype.d.ts +21 -0
- package/.dist/esm/src/string/stringFormat.runtype.js +270 -0
- package/.dist/esm/src/string/stringFormat.runtype.js.map +1 -0
- package/.dist/esm/src/string/time.runtype.d.ts +21 -0
- package/.dist/esm/src/string/time.runtype.js +100 -0
- package/.dist/esm/src/string/time.runtype.js.map +1 -0
- package/.dist/esm/src/string/url.runtype.d.ts +81 -0
- package/.dist/esm/src/string/url.runtype.js +160 -0
- package/.dist/esm/src/string/url.runtype.js.map +1 -0
- package/.dist/esm/src/string/uuid.runtype.d.ts +22 -0
- package/.dist/esm/src/string/uuid.runtype.js +44 -0
- package/.dist/esm/src/string/uuid.runtype.js.map +1 -0
- package/.dist/esm/src/type-formats-pure-fns.d.ts +27 -0
- package/.dist/esm/src/type-formats-pure-fns.js +390 -0
- package/.dist/esm/src/type-formats-pure-fns.js.map +1 -0
- package/.dist/esm/src/utils.d.ts +3 -0
- package/.dist/esm/src/utils.js +14 -0
- package/.dist/esm/src/utils.js.map +1 -0
- package/.dist/esm/vitest.config.d.ts +2 -0
- package/LICENSE +21 -0
- package/README.md +123 -0
- package/package.json +80 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { BaseRunType, JitFnCompiler, JitErrorsFnCompiler, JitCode, jitBinarySerializerArgs, JitFunctions, BaseFnCompiler, jitBinaryDeserializerArgs, TypeFormat, BaseRunTypeFormat, RunTypeOptions } from '@mionjs/run-types';
|
|
2
|
+
import { ReflectionKind } from '@deepkit/type';
|
|
3
|
+
import { FormatParams_BigInt } from '@mionjs/core';
|
|
4
|
+
type BinarySerializer = BaseFnCompiler<typeof jitBinarySerializerArgs, typeof JitFunctions.toBinary.id>;
|
|
5
|
+
type BinaryDeserializer = BaseFnCompiler<typeof jitBinaryDeserializerArgs, typeof JitFunctions.fromBinary.id>;
|
|
6
|
+
export declare class BigIntRunTypeFormat extends BaseRunTypeFormat<FormatParams_BigInt> {
|
|
7
|
+
static readonly id: "bigintFormat";
|
|
8
|
+
readonly kind = ReflectionKind.bigint;
|
|
9
|
+
readonly name: "bigintFormat";
|
|
10
|
+
emitIsType(comp: JitFnCompiler, rt: BaseRunType): JitCode;
|
|
11
|
+
emitIsTypeErrors(comp: JitErrorsFnCompiler, rt: BaseRunType): JitCode;
|
|
12
|
+
emitFormat(): JitCode;
|
|
13
|
+
emitToBinary(comp: BinarySerializer, rt: BaseRunType): JitCode;
|
|
14
|
+
emitFromBinary(comp: BinaryDeserializer, rt: BaseRunType): JitCode;
|
|
15
|
+
_mock(opts: RunTypeOptions, rt: BaseRunType): bigint;
|
|
16
|
+
validateParams(rt: BaseRunType, params: FormatParams_BigInt): void;
|
|
17
|
+
}
|
|
18
|
+
export declare const BIGINT_RUN_TYPE_FORMATTER: BigIntRunTypeFormat;
|
|
19
|
+
export type FormatBigInt<P extends Partial<FormatParams_BigInt> = {}, BrandName extends string = never> = TypeFormat<bigint, typeof BigIntRunTypeFormat.id, P, BrandName>;
|
|
20
|
+
export {};
|
|
21
|
+
export declare type __ΩFormatBigInt = any[];
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
import { registerFormatter, BaseRunTypeFormat, random, __ΩTypeFormat as ___TypeFormat } from "@mionjs/run-types";
|
|
2
|
+
import { ReflectionKind } from "@deepkit/type";
|
|
3
|
+
import { paramVal } from "../utils.js";
|
|
4
|
+
const BIGINT64_MIN = -9223372036854775808n;
|
|
5
|
+
const BIGINT64_MAX = 9223372036854775807n;
|
|
6
|
+
const BIGUINT64_MIN = 0n;
|
|
7
|
+
const BIGUINT64_MAX = 18446744073709551615n;
|
|
8
|
+
class BigIntRunTypeFormat extends BaseRunTypeFormat {
|
|
9
|
+
static id = "bigintFormat";
|
|
10
|
+
kind = ReflectionKind.bigint;
|
|
11
|
+
name = BigIntRunTypeFormat.id;
|
|
12
|
+
emitIsType(comp, rt) {
|
|
13
|
+
const params = this.getParams(rt);
|
|
14
|
+
const v = comp.vλl;
|
|
15
|
+
const conditions = [];
|
|
16
|
+
if (params.max !== void 0) {
|
|
17
|
+
const maxVal = paramVal(params.max);
|
|
18
|
+
conditions.push(`${v} <= ${maxVal}n`);
|
|
19
|
+
}
|
|
20
|
+
if (params.min !== void 0) {
|
|
21
|
+
const minVal = paramVal(params.min);
|
|
22
|
+
conditions.push(`${v} >= ${minVal}n`);
|
|
23
|
+
}
|
|
24
|
+
if (params.lt !== void 0) {
|
|
25
|
+
const ltVal = paramVal(params.lt);
|
|
26
|
+
conditions.push(`${v} < ${ltVal}n`);
|
|
27
|
+
}
|
|
28
|
+
if (params.gt !== void 0) {
|
|
29
|
+
const gtVal = paramVal(params.gt);
|
|
30
|
+
conditions.push(`${v} > ${gtVal}n`);
|
|
31
|
+
}
|
|
32
|
+
if (params.multipleOf !== void 0) {
|
|
33
|
+
const multipleOfVal = paramVal(params.multipleOf);
|
|
34
|
+
conditions.push(`(${v} % ${multipleOfVal}n === 0n)`);
|
|
35
|
+
}
|
|
36
|
+
return { code: conditions.length ? conditions.join(" && ") : "true", type: "E" };
|
|
37
|
+
}
|
|
38
|
+
emitIsTypeErrors(comp, rt) {
|
|
39
|
+
const params = this.getParams(rt);
|
|
40
|
+
const v = comp.vλl;
|
|
41
|
+
const errFn = this.getCallJitFormatErr(comp, rt, this, false);
|
|
42
|
+
const conditions = [];
|
|
43
|
+
if (params.max !== void 0) {
|
|
44
|
+
const maxVal = paramVal(params.max);
|
|
45
|
+
conditions.push(`if (${v} > ${maxVal}n) ${errFn("max", maxVal)}`);
|
|
46
|
+
}
|
|
47
|
+
if (params.min !== void 0) {
|
|
48
|
+
const minVal = paramVal(params.min);
|
|
49
|
+
conditions.push(`if (${v} < ${minVal}n) ${errFn("min", minVal)}`);
|
|
50
|
+
}
|
|
51
|
+
if (params.lt !== void 0) {
|
|
52
|
+
const ltVal = paramVal(params.lt);
|
|
53
|
+
conditions.push(`if (${v} >= ${ltVal}n) ${errFn("lt", ltVal)}`);
|
|
54
|
+
}
|
|
55
|
+
if (params.gt !== void 0) {
|
|
56
|
+
const gtVal = paramVal(params.gt);
|
|
57
|
+
conditions.push(`if (${v} <= ${gtVal}n) ${errFn("gt", gtVal)}`);
|
|
58
|
+
}
|
|
59
|
+
if (params.multipleOf !== void 0) {
|
|
60
|
+
const multipleOfVal = paramVal(params.multipleOf);
|
|
61
|
+
conditions.push(`if ((${v} % ${multipleOfVal}n !== 0n)) ${errFn("multipleOf", multipleOfVal)}`);
|
|
62
|
+
}
|
|
63
|
+
return { code: conditions.join(";"), type: "S" };
|
|
64
|
+
}
|
|
65
|
+
// No format transformation needed for bigints
|
|
66
|
+
emitFormat() {
|
|
67
|
+
return { code: void 0, type: "S" };
|
|
68
|
+
}
|
|
69
|
+
emitToBinary(comp, rt) {
|
|
70
|
+
const params = this.getParams(rt);
|
|
71
|
+
const bigintType = getBigIntType(params);
|
|
72
|
+
if (bigintType.isBigInt64 || bigintType.isBigUInt64) {
|
|
73
|
+
const sεr = comp.args.sεr;
|
|
74
|
+
if (bigintType.isBigUInt64) {
|
|
75
|
+
return { code: `${sεr}.view.setBigUint64(${sεr}.index, ${comp.vλl}, 1, ${sεr}.index += 8)`, type: "S" };
|
|
76
|
+
}
|
|
77
|
+
return { code: `${sεr}.view.setBigInt64(${sεr}.index, ${comp.vλl}, 1, ${sεr}.index += 8)`, type: "S" };
|
|
78
|
+
}
|
|
79
|
+
return { code: void 0, type: "S" };
|
|
80
|
+
}
|
|
81
|
+
emitFromBinary(comp, rt) {
|
|
82
|
+
const params = this.getParams(rt);
|
|
83
|
+
const bigintType = getBigIntType(params);
|
|
84
|
+
if (bigintType.isBigInt64 || bigintType.isBigUInt64) {
|
|
85
|
+
const dεs = comp.args.dεs;
|
|
86
|
+
if (bigintType.isBigUInt64) {
|
|
87
|
+
return { code: `${dεs}.view.getBigUint64(${dεs}.index, 1, ${dεs}.index += 8)`, type: "E" };
|
|
88
|
+
}
|
|
89
|
+
return { code: `${dεs}.view.getBigInt64(${dεs}.index, 1, ${dεs}.index += 8)`, type: "E" };
|
|
90
|
+
}
|
|
91
|
+
return { code: void 0, type: "S" };
|
|
92
|
+
}
|
|
93
|
+
_mock(opts, rt) {
|
|
94
|
+
const params = this.getParams(rt);
|
|
95
|
+
let min = params.min !== void 0 ? paramVal(params.min) : -99999n;
|
|
96
|
+
let max = params.max !== void 0 ? paramVal(params.max) : 99999n;
|
|
97
|
+
if (params.gt !== void 0) {
|
|
98
|
+
const gtVal = paramVal(params.gt);
|
|
99
|
+
min = gtVal + 1n;
|
|
100
|
+
}
|
|
101
|
+
if (params.lt !== void 0) {
|
|
102
|
+
const ltVal = paramVal(params.lt);
|
|
103
|
+
max = ltVal - 1n;
|
|
104
|
+
}
|
|
105
|
+
const minNum = Number(min > BigInt(Number.MIN_SAFE_INTEGER) ? min : BigInt(Number.MIN_SAFE_INTEGER));
|
|
106
|
+
const maxNum = Number(max < BigInt(Number.MAX_SAFE_INTEGER) ? max : BigInt(Number.MAX_SAFE_INTEGER));
|
|
107
|
+
let result = BigInt(random(minNum, maxNum));
|
|
108
|
+
if (params.multipleOf !== void 0) {
|
|
109
|
+
const multipleOfVal = paramVal(params.multipleOf);
|
|
110
|
+
const factor = result / multipleOfVal;
|
|
111
|
+
result = factor * multipleOfVal;
|
|
112
|
+
}
|
|
113
|
+
return result;
|
|
114
|
+
}
|
|
115
|
+
validateParams(rt, params) {
|
|
116
|
+
const lowerBoundCount = [params.min, params.gt].filter(Boolean).length;
|
|
117
|
+
if (lowerBoundCount > 1) {
|
|
118
|
+
throw new Error(`Cannot specify more than one of min or gt in ${this.printPath(rt)}`);
|
|
119
|
+
}
|
|
120
|
+
const upperBoundCount = [params.max, params.lt].filter(Boolean).length;
|
|
121
|
+
if (upperBoundCount > 1) {
|
|
122
|
+
throw new Error(`Cannot specify more than one of max or lt in ${this.printPath(rt)}`);
|
|
123
|
+
}
|
|
124
|
+
if (params.min && params.max && paramVal(params.min) > paramVal(params.max)) {
|
|
125
|
+
throw new Error(`min cannot be greater than max in ${this.printPath(rt)}`);
|
|
126
|
+
}
|
|
127
|
+
if (params.gt && params.lt && paramVal(params.gt) >= paramVal(params.lt)) {
|
|
128
|
+
throw new Error(`gt cannot be greater than or equal to lt in ${this.printPath(rt)}`);
|
|
129
|
+
}
|
|
130
|
+
if (params.multipleOf !== void 0) {
|
|
131
|
+
const multipleOfVal = paramVal(params.multipleOf);
|
|
132
|
+
if (multipleOfVal <= 0) {
|
|
133
|
+
throw new Error(`multipleOf must be greater than 0 in ${this.printPath(rt)}`);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
function getBigIntType(params) {
|
|
139
|
+
const min = params.min !== void 0 ? paramVal(params.min) : void 0;
|
|
140
|
+
const max = params.max !== void 0 ? paramVal(params.max) : void 0;
|
|
141
|
+
const isBigInt64 = min !== void 0 && max !== void 0 && min >= BIGINT64_MIN && max <= BIGINT64_MAX;
|
|
142
|
+
const isBigUInt64 = min !== void 0 && max !== void 0 && min >= BIGUINT64_MIN && max <= BIGUINT64_MAX;
|
|
143
|
+
return { isBigInt64, isBigUInt64 };
|
|
144
|
+
}
|
|
145
|
+
const BIGINT_RUN_TYPE_FORMATTER = registerFormatter(new BigIntRunTypeFormat());
|
|
146
|
+
const __ΩFormatBigInt = ["P", "BrandName", () => ___TypeFormat, () => BigIntRunTypeFormat.id, "FormatBigInt", 'PMc!!c"*i$e!!e!"o#%w%y'];
|
|
147
|
+
export {
|
|
148
|
+
BIGINT_RUN_TYPE_FORMATTER,
|
|
149
|
+
BigIntRunTypeFormat,
|
|
150
|
+
__ΩFormatBigInt
|
|
151
|
+
};
|
|
152
|
+
//# sourceMappingURL=bigIntFormat.runtype.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bigIntFormat.runtype.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
import { FormatBigInt } from './bigIntFormat.runtype.ts';
|
|
2
|
+
export type FormatBigPositive = FormatBigInt<{
|
|
3
|
+
min: 0n;
|
|
4
|
+
}>;
|
|
5
|
+
export type FormatBigNegative = FormatBigInt<{
|
|
6
|
+
max: 0n;
|
|
7
|
+
}>;
|
|
8
|
+
export type FormatBigPositiveInt = FormatBigInt<{
|
|
9
|
+
min: 0n;
|
|
10
|
+
multipleOf: 1n;
|
|
11
|
+
}>;
|
|
12
|
+
export type FormatBigNegativeInt = FormatBigInt<{
|
|
13
|
+
max: 0n;
|
|
14
|
+
multipleOf: 1n;
|
|
15
|
+
}>;
|
|
16
|
+
export type FormatBigInt64 = FormatBigInt<{
|
|
17
|
+
min: -9223372036854775808n;
|
|
18
|
+
max: 9223372036854775807n;
|
|
19
|
+
}>;
|
|
20
|
+
export type FormatBigUInt64 = FormatBigInt<{
|
|
21
|
+
min: 0n;
|
|
22
|
+
max: 18446744073709551615n;
|
|
23
|
+
}>;
|
|
24
|
+
export declare type __ΩFormatBigPositive = any[];
|
|
25
|
+
export declare type __ΩFormatBigNegative = any[];
|
|
26
|
+
export declare type __ΩFormatBigPositiveInt = any[];
|
|
27
|
+
export declare type __ΩFormatBigNegativeInt = any[];
|
|
28
|
+
export declare type __ΩFormatBigInt64 = any[];
|
|
29
|
+
export declare type __ΩFormatBigUInt64 = any[];
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { __ΩFormatBigInt as ___FormatBigInt } from "./bigIntFormat.runtype.js";
|
|
2
|
+
const __ΩFormatBigPositive = [() => ___FormatBigInt, 0n, "min", "FormatBigPositive", 'P."4#Mo!"w$y'];
|
|
3
|
+
const __ΩFormatBigNegative = [() => ___FormatBigInt, 0n, "max", "FormatBigNegative", 'P."4#Mo!"w$y'];
|
|
4
|
+
const __ΩFormatBigPositiveInt = [() => ___FormatBigInt, 0n, "min", 1n, "multipleOf", "FormatBigPositiveInt", 'P."4#.$4%Mo!"w&y'];
|
|
5
|
+
const __ΩFormatBigNegativeInt = [() => ___FormatBigInt, 0n, "max", 1n, "multipleOf", "FormatBigNegativeInt", 'P."4#.$4%Mo!"w&y'];
|
|
6
|
+
const __ΩFormatBigInt64 = [() => ___FormatBigInt, -9223372036854775808n, "min", 9223372036854775807n, "max", "FormatBigInt64", 'P."4#.$4%Mo!"w&y'];
|
|
7
|
+
const __ΩFormatBigUInt64 = [() => ___FormatBigInt, 0n, "min", 18446744073709551615n, "max", "FormatBigUInt64", 'P."4#.$4%Mo!"w&y'];
|
|
8
|
+
export {
|
|
9
|
+
__ΩFormatBigInt64,
|
|
10
|
+
__ΩFormatBigNegative,
|
|
11
|
+
__ΩFormatBigNegativeInt,
|
|
12
|
+
__ΩFormatBigPositive,
|
|
13
|
+
__ΩFormatBigPositiveInt,
|
|
14
|
+
__ΩFormatBigUInt64
|
|
15
|
+
};
|
|
16
|
+
//# sourceMappingURL=defaultBigNumberFormats.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaultBigNumberFormats.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare const FormatNames: {
|
|
2
|
+
readonly stringFormat: "stringFormat";
|
|
3
|
+
readonly uuid: "uuid";
|
|
4
|
+
readonly email: string;
|
|
5
|
+
readonly url: "url";
|
|
6
|
+
readonly domain: "domain";
|
|
7
|
+
readonly ip: string;
|
|
8
|
+
readonly date: "date";
|
|
9
|
+
readonly time: "time";
|
|
10
|
+
readonly dateTime: "dateTime";
|
|
11
|
+
readonly numberFormat: "numberFormat";
|
|
12
|
+
readonly bigintFormat: "bigintFormat";
|
|
13
|
+
};
|
|
14
|
+
export type FormatName = (typeof FormatNames)[keyof typeof FormatNames];
|
|
15
|
+
export declare type __ΩFormatName = any[];
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { BigIntRunTypeFormat } from "./bigint/bigIntFormat.runtype.js";
|
|
2
|
+
import { NumberRunTypeFormat } from "./number/numberFormat.runtype.js";
|
|
3
|
+
import "./type-formats-pure-fns.js";
|
|
4
|
+
import { DateStringRunTypeFormat } from "./string/date.runtype.js";
|
|
5
|
+
import { DateTimeRunTypeFormat } from "./string/dateTime.runtype.js";
|
|
6
|
+
import { TimeStringRunTypeFormat } from "./string/time.runtype.js";
|
|
7
|
+
import { EmailRunTypeFormat } from "./string/email.runtype.js";
|
|
8
|
+
import { DomainRunTypeFormat } from "./string/domain.runtype.js";
|
|
9
|
+
import { URLRunTypeFormat } from "./string/url.runtype.js";
|
|
10
|
+
import { IPRunTypeFormat } from "./string/ip.runtype.js";
|
|
11
|
+
import { UUIDRunTypeFormat } from "./string/uuid.runtype.js";
|
|
12
|
+
import { StringRunTypeFormat } from "./string/stringFormat.runtype.js";
|
|
13
|
+
const FormatNames = {
|
|
14
|
+
// String formats
|
|
15
|
+
stringFormat: StringRunTypeFormat.id,
|
|
16
|
+
uuid: UUIDRunTypeFormat.id,
|
|
17
|
+
email: EmailRunTypeFormat.id,
|
|
18
|
+
url: URLRunTypeFormat.id,
|
|
19
|
+
domain: DomainRunTypeFormat.id,
|
|
20
|
+
ip: IPRunTypeFormat.id,
|
|
21
|
+
date: DateStringRunTypeFormat.id,
|
|
22
|
+
time: TimeStringRunTypeFormat.id,
|
|
23
|
+
dateTime: DateTimeRunTypeFormat.id,
|
|
24
|
+
// Number formats
|
|
25
|
+
numberFormat: NumberRunTypeFormat.id,
|
|
26
|
+
// BigInt formats
|
|
27
|
+
bigintFormat: BigIntRunTypeFormat.id
|
|
28
|
+
};
|
|
29
|
+
const __ΩFormatName = [() => FormatNames, () => FormatNames, "FormatName", 'i!i"gfw#y'];
|
|
30
|
+
export {
|
|
31
|
+
FormatNames,
|
|
32
|
+
__ΩFormatName
|
|
33
|
+
};
|
|
34
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -0,0 +1,335 @@
|
|
|
1
|
+
export type EMAIL_NAME_SAMPLES = [
|
|
2
|
+
'john.doe',
|
|
3
|
+
'jane.smith',
|
|
4
|
+
'admin',
|
|
5
|
+
'support',
|
|
6
|
+
'contact',
|
|
7
|
+
'info',
|
|
8
|
+
'sales',
|
|
9
|
+
'marketing',
|
|
10
|
+
'hello',
|
|
11
|
+
'feedback',
|
|
12
|
+
'user123',
|
|
13
|
+
'test.account',
|
|
14
|
+
'random.name',
|
|
15
|
+
'developer',
|
|
16
|
+
'webmaster',
|
|
17
|
+
'juan.perez',
|
|
18
|
+
'maria.garcia',
|
|
19
|
+
'soporte',
|
|
20
|
+
'contacto',
|
|
21
|
+
'ventas',
|
|
22
|
+
'informacion',
|
|
23
|
+
'hola',
|
|
24
|
+
'usuario',
|
|
25
|
+
'prueba',
|
|
26
|
+
'desarrollador',
|
|
27
|
+
'jean.dupont',
|
|
28
|
+
'marie.curie',
|
|
29
|
+
'contact',
|
|
30
|
+
'support',
|
|
31
|
+
'vente',
|
|
32
|
+
'bonjour',
|
|
33
|
+
'utilisateur',
|
|
34
|
+
'testeur',
|
|
35
|
+
'developpeur',
|
|
36
|
+
'hans.schmidt',
|
|
37
|
+
'anna.müller',
|
|
38
|
+
'kontakt',
|
|
39
|
+
'hilfe',
|
|
40
|
+
'verkauf',
|
|
41
|
+
'benutzer',
|
|
42
|
+
'testkonto',
|
|
43
|
+
'entwickler',
|
|
44
|
+
'giuseppe.rossi',
|
|
45
|
+
'maria.bianchi',
|
|
46
|
+
'contatto',
|
|
47
|
+
'supporto',
|
|
48
|
+
'vendite',
|
|
49
|
+
'utente',
|
|
50
|
+
'prova',
|
|
51
|
+
'sviluppatore',
|
|
52
|
+
'joao.silva',
|
|
53
|
+
'maria.oliveira',
|
|
54
|
+
'contato',
|
|
55
|
+
'suporte',
|
|
56
|
+
'vendas',
|
|
57
|
+
'usuario',
|
|
58
|
+
'teste',
|
|
59
|
+
'desenvolvedor',
|
|
60
|
+
'홍길동',
|
|
61
|
+
'김철수',
|
|
62
|
+
'고객지원',
|
|
63
|
+
'연락처',
|
|
64
|
+
'판매',
|
|
65
|
+
'사용자',
|
|
66
|
+
'山田太郎',
|
|
67
|
+
'鈴木花子',
|
|
68
|
+
'情報',
|
|
69
|
+
'サポート',
|
|
70
|
+
'日本語',
|
|
71
|
+
'テスト',
|
|
72
|
+
'携帯',
|
|
73
|
+
'電子',
|
|
74
|
+
'李伟',
|
|
75
|
+
'王芳',
|
|
76
|
+
'张三',
|
|
77
|
+
'联系',
|
|
78
|
+
'测试',
|
|
79
|
+
'用户',
|
|
80
|
+
'开发',
|
|
81
|
+
'arjun.sharma',
|
|
82
|
+
'priya.kumar',
|
|
83
|
+
'support',
|
|
84
|
+
'contact',
|
|
85
|
+
'vikas',
|
|
86
|
+
'pariksha',
|
|
87
|
+
'upayogakarta',
|
|
88
|
+
'иван.иванов',
|
|
89
|
+
'анна.петровна',
|
|
90
|
+
'поддержка',
|
|
91
|
+
'контакт',
|
|
92
|
+
'продажи',
|
|
93
|
+
'пользователь',
|
|
94
|
+
'разработчик',
|
|
95
|
+
'alpha.beta',
|
|
96
|
+
'charlie.delta',
|
|
97
|
+
'test123',
|
|
98
|
+
'mock.user',
|
|
99
|
+
'example.name',
|
|
100
|
+
'first.last',
|
|
101
|
+
'nickname',
|
|
102
|
+
'alias',
|
|
103
|
+
'temp.account',
|
|
104
|
+
'demo.user'
|
|
105
|
+
];
|
|
106
|
+
export type EMAIL_SAMPLES = [
|
|
107
|
+
'john.doe@mion.io',
|
|
108
|
+
'jane.smith@rpc.org',
|
|
109
|
+
'admin@wiki.org',
|
|
110
|
+
'support@www.mion.org',
|
|
111
|
+
'contact@www.api.org',
|
|
112
|
+
'info@arch.org',
|
|
113
|
+
'sales@ccmns.org',
|
|
114
|
+
'marketing@eff.org',
|
|
115
|
+
'hello@fsf.org',
|
|
116
|
+
'feedback@opensource.org',
|
|
117
|
+
'user123@node.org',
|
|
118
|
+
'test.account@typescript.org',
|
|
119
|
+
'random.name@rpc.org',
|
|
120
|
+
'developer@fullstack.org',
|
|
121
|
+
'webmaster@mion.io',
|
|
122
|
+
'juan.perez@wiki.org',
|
|
123
|
+
'maria.garcia@arch.org',
|
|
124
|
+
'soporte@ccmns.org',
|
|
125
|
+
'contacto@eff.org',
|
|
126
|
+
'ventas@fsf.org',
|
|
127
|
+
'informacion@opensource.org',
|
|
128
|
+
'hola@node.org',
|
|
129
|
+
'usuario@typescript.org',
|
|
130
|
+
'prueba@rpc.org',
|
|
131
|
+
'desarrollador@fullstack.org',
|
|
132
|
+
'jean.dupont@mion.io',
|
|
133
|
+
'marie.curie@wiki.org',
|
|
134
|
+
'vente@arch.org',
|
|
135
|
+
'bonjour@ccmns.org',
|
|
136
|
+
'utilisateur@eff.org',
|
|
137
|
+
'testeur@fsf.org',
|
|
138
|
+
'developpeur@opensource.org',
|
|
139
|
+
'anna.müller@node.org',
|
|
140
|
+
'anna.schmidt@typescript.org',
|
|
141
|
+
'kontakt@rpc.org',
|
|
142
|
+
'hilfe@fullstack.org',
|
|
143
|
+
'verkauf@mion.io',
|
|
144
|
+
'benutzer@wiki.org',
|
|
145
|
+
'entwickler@arch.org',
|
|
146
|
+
'王芳@ccmns.org',
|
|
147
|
+
'联系@eff.org',
|
|
148
|
+
'测试@fsf.org',
|
|
149
|
+
'ceshi@opensource.org',
|
|
150
|
+
'张三@node.org',
|
|
151
|
+
'kaifa@typescript.org',
|
|
152
|
+
'arjun.sharma@rpc.org',
|
|
153
|
+
'priya.kumar@fullstack.org',
|
|
154
|
+
'vikas@mion.io',
|
|
155
|
+
'pariksha@wiki.org',
|
|
156
|
+
'upayogakarta@arch.org',
|
|
157
|
+
'иван.иванов@ccmns.org',
|
|
158
|
+
'анна.петровна@eff.org',
|
|
159
|
+
'поддержка@fsf.org',
|
|
160
|
+
'контакт@opensource.org',
|
|
161
|
+
'продажи@node.org',
|
|
162
|
+
'пользователь@typescript.org',
|
|
163
|
+
'разработчик@rpc.org',
|
|
164
|
+
'alpha.beta@fullstack.org',
|
|
165
|
+
'charlie.delta@mion.io',
|
|
166
|
+
'test123@wiki.org',
|
|
167
|
+
'mock.user@arch.org',
|
|
168
|
+
'example.name@ccmns.org',
|
|
169
|
+
'first.last@eff.org',
|
|
170
|
+
'nickname@fsf.org',
|
|
171
|
+
'alias@opensource.org',
|
|
172
|
+
'temp.account@node.org',
|
|
173
|
+
'demo.user@typescript.org',
|
|
174
|
+
'email+tag@mion.io',
|
|
175
|
+
'email-with-hyphen@rpc.org',
|
|
176
|
+
'email_with_underscore@wiki.org',
|
|
177
|
+
'very.common@arch.org',
|
|
178
|
+
"!#$%&'*+-/=?^_`{|}~@ccmns.org",
|
|
179
|
+
'"quoted"@eff.org',
|
|
180
|
+
'"very.(),:;<>[]\\"@opensource.org',
|
|
181
|
+
'user.name+tag+sorting@example.com',
|
|
182
|
+
'x@example.com',
|
|
183
|
+
'example-indeed@strange-example.com',
|
|
184
|
+
'test/test@test.com',
|
|
185
|
+
'very."(),:;<>[]..very.unusual@strange.example.com',
|
|
186
|
+
'user%example.com@mion.io',
|
|
187
|
+
'user-@example.org'
|
|
188
|
+
];
|
|
189
|
+
export type EMAIL_SAMPLES_PUNYCODE = [
|
|
190
|
+
'john.doe@mion.io',
|
|
191
|
+
'jane.smith@rpc.org',
|
|
192
|
+
'admin@xn--e1afmkfd.xn--p1ai',
|
|
193
|
+
'support@xn--80aaicww6a.xn--p1acf',
|
|
194
|
+
'juan.perez@wiki.org',
|
|
195
|
+
'maria.garcia@arch.org',
|
|
196
|
+
'soporte@xn--mgbh0fb.xn--kgbechtv',
|
|
197
|
+
'contacto@xn--fiqz9s.xn--fiqs8s',
|
|
198
|
+
'иван.иванов@ccmns.org',
|
|
199
|
+
'анна.петровна@xn--80adxhks.xn--p1ai',
|
|
200
|
+
'поддержка@xn--d1acufc.xn--j1amh',
|
|
201
|
+
'user.name+tag+sorting@example.com',
|
|
202
|
+
'user@sub-domain.example-site.com',
|
|
203
|
+
'user@domain.with-number123.com',
|
|
204
|
+
'user@xn--80akhbyknj4f.xn--p1ai',
|
|
205
|
+
'x@xn--mgberp4a5d4ar.xn--mgbaam7a8h',
|
|
206
|
+
'test@xn--qxam.xn--zckzah',
|
|
207
|
+
'info@xn--9n2bp8q.xn--9t4b11yi5a'
|
|
208
|
+
];
|
|
209
|
+
export type URL_SAMPLES = [
|
|
210
|
+
'https://mion.io',
|
|
211
|
+
'https://rpc.org',
|
|
212
|
+
'http://wiki.org',
|
|
213
|
+
'https://www.mion.org',
|
|
214
|
+
'http://www.api.org',
|
|
215
|
+
'https://arch.org/path/to/resource',
|
|
216
|
+
'http://ccmns.org/path/to/resource',
|
|
217
|
+
'https://eff.org?query=param',
|
|
218
|
+
'http://fsf.org?query=param#hello-world',
|
|
219
|
+
'https://opensource.org#fragment',
|
|
220
|
+
'http://node.org#fragment',
|
|
221
|
+
'https://subdomain.typescript.org',
|
|
222
|
+
'http://subdomain.rpc.org',
|
|
223
|
+
'https://fullstack.org:8080',
|
|
224
|
+
'http://localhost:8080/path/to/resource',
|
|
225
|
+
'https://127.0.0.1:8080/path/to/resource',
|
|
226
|
+
'https://254.60.167.80:80/path/to/resource',
|
|
227
|
+
'http://:8080/path/to/resource',
|
|
228
|
+
'http://[::1]:8080/path/to/resource',
|
|
229
|
+
'http://[::]:8080/path/to/resource?query=param',
|
|
230
|
+
'http://[::1]:8080/path/to/resource#fragment',
|
|
231
|
+
'http://[::1]/path/to/resource',
|
|
232
|
+
'ws://mion.io/socket',
|
|
233
|
+
'ws://websocket.org/socket',
|
|
234
|
+
'wss://socket.io/socket',
|
|
235
|
+
'ws://live.com/socket?query=param',
|
|
236
|
+
'wss://sock.org/socket?query=param#fragment',
|
|
237
|
+
'ws://socketcluster.io/socket#fragment',
|
|
238
|
+
'wss://developer..dev:8080/socket',
|
|
239
|
+
'ws://fast.com:8080/socket?query=param',
|
|
240
|
+
'ftp://example.com/file.txt',
|
|
241
|
+
'ftps://example.com/file.txt'
|
|
242
|
+
];
|
|
243
|
+
export type FILE_URL_SAMPLES = [
|
|
244
|
+
'file:///path/to/file.txt',
|
|
245
|
+
'file:///C:/path/to/file.txt',
|
|
246
|
+
'file://localhost/path/to/file.txt',
|
|
247
|
+
'file:///home/user/file.txt',
|
|
248
|
+
'file://example.com/path/to/file.txt',
|
|
249
|
+
'file:///C:/Users/User/Documents/file.txt',
|
|
250
|
+
'file:///tmp/file.txt',
|
|
251
|
+
'file:///var/log/syslog',
|
|
252
|
+
'file:///path/to/file.txt?query=param',
|
|
253
|
+
'file:///C:/path/to/file.txt?query=param',
|
|
254
|
+
'file:///path/to/file%20with%20spaces.txt',
|
|
255
|
+
'file:///path/to/file@with@special#characters.txt',
|
|
256
|
+
'file://localhost/path/to/file.txt',
|
|
257
|
+
'file://localhost/C:/path/to/file.txt',
|
|
258
|
+
'file://localhost/home/user/file.txt',
|
|
259
|
+
'file://127.0.0.1:890/example.com/path/to/file.txt',
|
|
260
|
+
'file://localhost/path/to/file.txt?query=param',
|
|
261
|
+
'file:///home/user/file.txt?query=param'
|
|
262
|
+
];
|
|
263
|
+
export type HTTP_URL_SAMPLES = [
|
|
264
|
+
'https://mion.io',
|
|
265
|
+
'https://rpc.org',
|
|
266
|
+
'http://wiki.org',
|
|
267
|
+
'https://www.mion.org',
|
|
268
|
+
'http://www.api.org',
|
|
269
|
+
'https://arch.org/path/to/resource',
|
|
270
|
+
'http://ccmns.org/path/to/resource',
|
|
271
|
+
'https://eff.org?query=param',
|
|
272
|
+
'http://fsf.org?query=param#hello-world',
|
|
273
|
+
'https://opensource.org#fragment',
|
|
274
|
+
'http://node.org#fragment',
|
|
275
|
+
'https://subdomain.typescript.org',
|
|
276
|
+
'http://subdomain.rpc.org',
|
|
277
|
+
'https://fullstack.org:8080',
|
|
278
|
+
'http://localhost:8080/path/to/resource',
|
|
279
|
+
'https://127.0.0.1:8080/path/to/resource',
|
|
280
|
+
'https://254.60.167.80:80/path/to/resource',
|
|
281
|
+
'http://:8080/path/to/resource',
|
|
282
|
+
'http://[::1]:8080/path/to/resource',
|
|
283
|
+
'http://[::]:8080/path/to/resource?query=param',
|
|
284
|
+
'http://[::1]:8080/path/to/resource#fragment',
|
|
285
|
+
'http://[::1]/path/to/resource'
|
|
286
|
+
];
|
|
287
|
+
export type SOCIAL_MEDIA_URL_SAMPLES = [
|
|
288
|
+
'https://www.facebook.com/user',
|
|
289
|
+
'https://twitter.com/user',
|
|
290
|
+
'https://www.instagram.com/user/',
|
|
291
|
+
'https://www.linkedin.com/in/user/',
|
|
292
|
+
'https://www.tiktok.com/@user',
|
|
293
|
+
'https://www.youtube.com/c/user',
|
|
294
|
+
'https://www.snapchat.com/add/user',
|
|
295
|
+
'https://www.pinterest.com/user?query=param',
|
|
296
|
+
'https://www.reddit.com/user/user#fragment',
|
|
297
|
+
'https://www.whatsapp.com/user/',
|
|
298
|
+
'http://www.facebook.com/user',
|
|
299
|
+
'http://twitter.com/user',
|
|
300
|
+
'http://www.instagram.com/user/',
|
|
301
|
+
'http://www.linkedin.com/in/user/?query=param',
|
|
302
|
+
'http://www.tiktok.com/@user',
|
|
303
|
+
'http://www.youtube.com/c/user',
|
|
304
|
+
'http://www.snapchat.com/add/user?query=param#fragment',
|
|
305
|
+
'http://www.pinterest.com/user/',
|
|
306
|
+
'http://www.reddit.com/user/user/#fragment',
|
|
307
|
+
'http://www.whatsapp.com/user/'
|
|
308
|
+
];
|
|
309
|
+
export type SOCIAL_MEDIA_DOMAINS_SAMPLES = [
|
|
310
|
+
'facebook',
|
|
311
|
+
'twitter',
|
|
312
|
+
'instagram',
|
|
313
|
+
'linkedin',
|
|
314
|
+
'tiktok',
|
|
315
|
+
'youtube',
|
|
316
|
+
'snapchat',
|
|
317
|
+
'pinterest',
|
|
318
|
+
'reddit',
|
|
319
|
+
'whatsapp'
|
|
320
|
+
];
|
|
321
|
+
export declare const TLD_SAMPLES: string[];
|
|
322
|
+
export declare const NAME_SAMPLES: string[];
|
|
323
|
+
export declare const TLD_CHARS = "abcdefghijklmnopqrstuvwxyz";
|
|
324
|
+
export declare const NAME_CHARS = "abcdefghijklmnopqrstuvwxyz0123456789";
|
|
325
|
+
export declare const NAME_CHARS_UNICODE: string;
|
|
326
|
+
export declare const INTERNET_PROTOCOLS: string[];
|
|
327
|
+
export declare const EMAIL_NAME_SAMPLES_ARRAY: string[];
|
|
328
|
+
export declare type __ΩEMAIL_NAME_SAMPLES = any[];
|
|
329
|
+
export declare type __ΩEMAIL_SAMPLES = any[];
|
|
330
|
+
export declare type __ΩEMAIL_SAMPLES_PUNYCODE = any[];
|
|
331
|
+
export declare type __ΩURL_SAMPLES = any[];
|
|
332
|
+
export declare type __ΩFILE_URL_SAMPLES = any[];
|
|
333
|
+
export declare type __ΩHTTP_URL_SAMPLES = any[];
|
|
334
|
+
export declare type __ΩSOCIAL_MEDIA_URL_SAMPLES = any[];
|
|
335
|
+
export declare type __ΩSOCIAL_MEDIA_DOMAINS_SAMPLES = any[];
|