inferred-types 1.1.5 → 1.2.1

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.
@@ -3862,6 +3862,361 @@ type SerializedData<TAs extends Suggest<MimeTypes>, TData> = IsBinaryFormat<TAs>
3862
3862
  data: TData;
3863
3863
  });
3864
3864
  //#endregion
3865
+ //#region src/assertions/AssertAssertionError.d.ts
3866
+ type Mapper$2<TType extends string | undefined, TSubType extends string | undefined> = As<{
3867
+ any: AssertionError<`invalid-test/any-type`, `While testing for an Error condition, we instead got the 'any' type!`, {
3868
+ test: never;
3869
+ expected: Error;
3870
+ type: TType;
3871
+ subType: TSubType;
3872
+ op: "isError";
3873
+ }>;
3874
+ unknown: AssertionError<`failed/isError`, `The test value MIGHT be an Error but currently the type is set as 'unknown' which masks whether at runtime this value would be an error.`, {
3875
+ test: never;
3876
+ expected: Error;
3877
+ type: TType;
3878
+ subType: TSubType;
3879
+ op: "isError";
3880
+ }>;
3881
+ never: AssertionError<`failed/isError`, `The test value was 'never', not an error!`, {
3882
+ test: never;
3883
+ expected: Error;
3884
+ type: TType;
3885
+ subType: TSubType;
3886
+ op: "isError";
3887
+ }>;
3888
+ }, AssertionMapper>;
3889
+ /**
3890
+ * **AssertAssertionError**`<TTest, [TType], [TSubType]>`
3891
+ *
3892
+ * Tests whether `TTest` is an `AssertionError`.
3893
+ *
3894
+ * - optionally also tests that the error `type` or `subType` is correct
3895
+ */
3896
+ type AssertAssertionError<TTest, TType extends `invalid-test` | `failed` | undefined = undefined, TSubType extends string | undefined = undefined> = AssertValidation<TTest, Mapper$2<TType, TSubType>, Error> extends Error ? AssertValidation<TTest, Mapper$2<TType, TSubType>, Error> : TTest extends AssertionError<any, any, any> ? TType extends string ? TSubType extends string ? TTest extends {
3897
+ classification: `${TType}/${TSubType}`;
3898
+ } ? true : false : TTest extends {
3899
+ classification: `${TType}/${string}`;
3900
+ } ? true : false : true : false;
3901
+ //#endregion
3902
+ //#region src/assertions/AssertContains.d.ts
3903
+ type Mapper$1 = As<{
3904
+ any: AssertionError<`invalid-test/any-type`, `While testing for containment, we instead got the 'any' type!`, {
3905
+ test: never;
3906
+ expected: never;
3907
+ op: "contains";
3908
+ }>;
3909
+ unknown: AssertionError<`failed/contains`, `The test value is 'unknown', which masks whether the value contains the expected element.`, {
3910
+ test: never;
3911
+ expected: never;
3912
+ op: "contains";
3913
+ }>;
3914
+ never: AssertionError<`failed/contains`, `The test value was 'never', which cannot contain anything!`, {
3915
+ test: never;
3916
+ expected: never;
3917
+ op: "contains";
3918
+ }>;
3919
+ }, AssertionMapper>;
3920
+ /**
3921
+ * **AssertContains**
3922
+ *
3923
+ * Tests whether a string, number, or array type in `TTest` _contains_ `TExpected`
3924
+ */
3925
+ type AssertContains<TTest, TExpected> = AssertValidation<TTest, Mapper$1, TExpected> extends {
3926
+ kind: "AssertionError";
3927
+ } ? AssertValidation<TTest, Mapper$1, TExpected> : [TTest] extends [string] ? Contains<TTest, TExpected> : [TTest] extends [number] ? Contains<TTest, TExpected> : [TTest] extends [readonly unknown[]] ? Contains<TTest, TExpected> : false;
3928
+ //#endregion
3929
+ //#region src/assertions/AssertEquals.d.ts
3930
+ /**
3931
+ * **AssertEqual**`<TTest, TExpected>`
3932
+ *
3933
+ * Type test assertion that `TTest` _equals_ `TExpected`.
3934
+ */
3935
+ type AssertEqual<TTest, TExpected> = AssertValidation<TTest, "equals", TExpected> extends AssertionError ? AssertValidation<TTest, "equals", TExpected> : IsEqual<TTest, TExpected>;
3936
+ /**
3937
+ * **AssertEquals**`<TTest, TExpected>`
3938
+ *
3939
+ * Type test assertion that `TTest` _equals_ `TExpected`.
3940
+ *
3941
+ * **Note:** _alias to `AssertEqual`_
3942
+ */
3943
+ type AssertEquals<TTest, TExpected> = AssertEqual<TTest, TExpected>;
3944
+ //# sourceMappingURL=AssertEquals.d.ts.map
3945
+ //#endregion
3946
+ //#region src/assertions/AssertError.d.ts
3947
+ type Mapper<TType extends string | undefined, TSubType extends string | undefined> = As<{
3948
+ any: AssertionError<`invalid-test/any-type`, `While testing for an Error condition, we instead got the 'any' type!`, {
3949
+ test: never;
3950
+ expected: Error;
3951
+ type: TType;
3952
+ subType: TSubType;
3953
+ op: "isError";
3954
+ }>;
3955
+ unknown: AssertionError<`failed/isError`, `The test value MIGHT be an Error but currently the type is set as 'unknown' which masks whether at runtime this value would be an error.`, {
3956
+ test: never;
3957
+ expected: Error;
3958
+ type: TType;
3959
+ subType: TSubType;
3960
+ op: "isError";
3961
+ }>;
3962
+ never: AssertionError<`failed/isError`, `The test value was 'never', not an error!`, {
3963
+ test: never;
3964
+ expected: Error;
3965
+ type: TType;
3966
+ subType: TSubType;
3967
+ op: "isError";
3968
+ }>;
3969
+ }, AssertionMapper>;
3970
+ /**
3971
+ * **AssertError**`<TTest, [TType], [TSubType]>`
3972
+ *
3973
+ * Tests whether `TTest` is an Error.
3974
+ *
3975
+ * - optionally also tests that the error `type` or `subType` is correct
3976
+ */
3977
+ type AssertError<TTest, TType extends string | undefined = undefined, TSubType extends string | undefined = undefined> = AssertValidation<TTest, Mapper<TType, TSubType>, Error> extends {
3978
+ kind: "AssertionError";
3979
+ } ? AssertValidation<TTest, Mapper<TType, TSubType>, Error> : TTest extends Error ? TType extends string ? TSubType extends string ? And<[TTest extends {
3980
+ type: TType;
3981
+ } ? true : false, TTest extends {
3982
+ subType: TSubType;
3983
+ } ? true : false]> : TTest extends {
3984
+ type: TType;
3985
+ } ? true : false : true : false;
3986
+ //#endregion
3987
+ //#region src/assertions/AssertExtends.d.ts
3988
+ /**
3989
+ * **AssertExtends**`<TTest, TBase>`
3990
+ *
3991
+ * Type test assertion that `TTest` _extends_ the type of `TBase`.
3992
+ */
3993
+ type AssertExtends<TTest, TBase> = AssertValidation<TTest, "extends", TBase> extends Error ? AssertValidation<TTest, "extends", TBase> : Extends<TTest, TBase>;
3994
+ //# sourceMappingURL=AssertExtends.d.ts.map
3995
+ //#endregion
3996
+ //#region src/assertions/AssertFalse.d.ts
3997
+ /**
3998
+ * **AssertFalse**`<TTest>`
3999
+ *
4000
+ * Type test assertion that `TTest` is `false`.
4001
+ */
4002
+ type AssertFalse<TTest> = AssertValidation<TTest, "equals", false> extends Error ? AssertValidation<TTest, "equals", false> : IsEqual<TTest, false>;
4003
+ //# sourceMappingURL=AssertFalse.d.ts.map
4004
+ //#endregion
4005
+ //#region src/assertions/AssertionOp.d.ts
4006
+ /**
4007
+ * **AssertionOp**
4008
+ *
4009
+ * Comparison operation used in a given type test assertion.
4010
+ */
4011
+ type AssertionOp = "equals" | "extends" | "hasSameKeys" | "hasSameValues" | "isError" | "contains" | "containsAll" | "doesNotExtend" | "doesNotEqual";
4012
+ //# sourceMappingURL=AssertionOp.d.ts.map
4013
+ //#endregion
4014
+ //#region src/assertions/AssertNotEqual.d.ts
4015
+ /**
4016
+ * **AssertNotEqual**`<TTest, TExpected>`
4017
+ *
4018
+ * Type test assertion that `TTest` _does not equal_ `TExpected`.
4019
+ */
4020
+ type AssertNotEqual<TTest, TExpected> = AssertValidation<TTest, "equals", TExpected> extends Error ? AssertValidation<TTest, "equals", TExpected> : Not<IsEqual<TTest, TExpected>>;
4021
+ //# sourceMappingURL=AssertNotEqual.d.ts.map
4022
+ //#endregion
4023
+ //#region src/assertions/AssertSameValues.d.ts
4024
+ /**
4025
+ * **AssertSameValues**`<TTest>`
4026
+ *
4027
+ * Type test assertion that `TTest` is `false`.
4028
+ */
4029
+ type AssertSameValues<TTest extends Container, TExpected extends Container> = AssertValidation<TTest, "hasSameValues", TExpected> extends Error ? AssertValidation<TTest, "hasSameValues", TExpected> : HasSameValues<TTest, TExpected>;
4030
+ //# sourceMappingURL=AssertSameValues.d.ts.map
4031
+ //#endregion
4032
+ //#region src/assertions/AssertTrue.d.ts
4033
+ /**
4034
+ * **AssertTrue**`<TTest>`
4035
+ *
4036
+ * Type test assertion that `TTest` is `true`.
4037
+ */
4038
+ type AssertTrue<TTest> = AssertValidation<TTest, "equals", true> extends Error ? AssertValidation<TTest, "equals", true> : IsEqual<TTest, true>;
4039
+ //# sourceMappingURL=AssertTrue.d.ts.map
4040
+ //#endregion
4041
+ //#region src/assertions/AssertValidation.d.ts
4042
+ type AssertionMapper = {
4043
+ any: boolean | AssertionError<any, any, any>;
4044
+ unknown: boolean | AssertionError<any, any, any>;
4045
+ never: boolean | AssertionError<any, any, any>;
4046
+ };
4047
+ type AssertValidation<TTest, TOp extends AssertionOp | AssertionMapper, TExpected> = TOp extends AssertionOp ? [IsAny<TTest>] extends [true] ? AssertionError<`invalid-test/any-type`, `The test value passed in was of type 'any'! This is not allowed.`, {
4048
+ test: TTest;
4049
+ expected: TExpected;
4050
+ assertion: TOp;
4051
+ }> : [IsAny<TExpected>] extends [true] ? AssertionError<`invalid-test/any-type`, `The expected type passed into this test was 'any'! This is not allowed.`, {
4052
+ test: TTest;
4053
+ expected: TExpected;
4054
+ assertion: TOp;
4055
+ }> : undefined : TOp extends AssertionMapper ? [IsNever<TTest>] extends [true] ? TOp["never"] : [IsAny<TTest>] extends [true] ? TOp["any"] : [IsUnknown<TTest>] extends [true] ? TOp["unknown"] : [IsAny<TExpected>] extends [true] ? AssertionError<`invalid-test/any-type`, `The expected type passed into this test was 'any'! This is not allowed.`, {
4056
+ test: TTest;
4057
+ expected: TExpected;
4058
+ assertion: TOp;
4059
+ }> : undefined : never;
4060
+ //# sourceMappingURL=AssertValidation.d.ts.map
4061
+ //#endregion
4062
+ //#region src/assertions/Expect.d.ts
4063
+ /**
4064
+ * **Expect**`<T>`
4065
+ *
4066
+ * A type testing assertion which is expected to evaluate to `true`.
4067
+ *
4068
+ * - often used with the `Test` type utility (also from **inferred-types**
4069
+ * library)
4070
+ * - use with `Test` is preferred as it eliminates silent errors such when
4071
+ * tests evaluate to `never` or `any` and provides a meaningful error report
4072
+ * - but any assertion which is expected to result in `true` is a valid test
4073
+ * here
4074
+ */
4075
+ type Expect<T extends true> = T;
4076
+ //# sourceMappingURL=Expect.d.ts.map
4077
+ //#endregion
4078
+ //#region src/assertions/Test.d.ts
4079
+ /** ensure the expected type for error checking is valid */
4080
+ type IsValidExpectedError<T> = T extends Error | null | true | undefined | string ? true : false;
4081
+ /**
4082
+ * hands validation for Errors which are being checked for type/subtype
4083
+ */
4084
+ type ValidateErrorType<TTest, TExpected extends string> = TTest extends Error ? TExpected extends `${infer Type}/${infer Subtype}` ? "type" extends keyof TTest ? "subType" extends keyof TTest ? And<[TTest["type"] extends Err<TExpected>["type"] ? true : false, TTest["subType"] extends Err<TExpected>["subType"] ? true : false]> extends true ? true : AssertionError<`failed/isError`, `The tested type is an Error but does not match the type/subtype of '${TExpected}'. Instead it was '${As<TTest["type"], string>}/${As<TTest["subType"], string>}'`, {
4085
+ test: TTest;
4086
+ expected: TExpected;
4087
+ type: Type;
4088
+ subType: Subtype;
4089
+ }> : TTest["type"] extends Err<TExpected>["type"] ? true : AssertionError<`failed/isError`, `The tested type is an Error but it's type was not of the type "${Type}"!`, {
4090
+ test: TTest;
4091
+ expected: TExpected;
4092
+ type: Type;
4093
+ subType: Subtype;
4094
+ }> : "type" extends keyof TTest ? TTest["type"] extends Err<TExpected>["type"] ? true : AssertionError<`failed/isError`, `The tested type is an Error but it's type was not of the type "${Type}"!`, {
4095
+ test: TTest;
4096
+ expected: TExpected;
4097
+ }> : AssertionError<`failed/isError`, `The tested type is an Error but has no 'type' property defined so unable to test it's value against the expected type of '${Err<TExpected>["type"]}'`, {
4098
+ test: TTest;
4099
+ expected: TExpected;
4100
+ }> : "type" extends keyof TTest ? TTest["type"] extends Err<TExpected>["type"] ? true : AssertionError<`failed/isError`, `The tested type is an Error but it's type was not of the type ${Err<TExpected>["type"]}; instead type property was: ${As<TTest["type"], string>}`, {
4101
+ test: TTest;
4102
+ expected: TExpected;
4103
+ }> : AssertionError<`failed/isError`, `The tested type is an Error but has no 'type' property defined so unable to test it's value against the expected type of ${Err<TExpected>["type"]}`, {
4104
+ test: TTest;
4105
+ expected: TExpected;
4106
+ }> : AssertionError<`failed/isError`, `The test appears to be an attempt to test if a type is particular type/subtype of an Error but must be a valid string literal and wasn't!`, {
4107
+ test: TTest;
4108
+ expected: TExpected;
4109
+ }>;
4110
+ type Assert<TTest, TOp extends AssertionOp, TExpected> = TOp extends "equals" ? [IsEqual<TTest, TExpected>] extends [true] ? true : AssertionError<`failed/equals`, `The type being tested did not equal the expected type!`, {
4111
+ test: TTest;
4112
+ expected: TExpected;
4113
+ }> : TOp extends "extends" ? Extends<TTest, TExpected> extends true ? true : AssertionError<`failed/extends`, `The type being tested did not extend the expected type!`, {
4114
+ test: TTest;
4115
+ expected: TExpected;
4116
+ }> : TOp extends "doesNotExtend" ? DoesNotExtend<TTest, TExpected> extends true ? true : AssertionError<`failed/doesNotExtend`, `The test type extended the comparison type but was not supposed to!`, {
4117
+ test: TTest;
4118
+ expected: TExpected;
4119
+ }> : TOp extends "hasSameKeys" ? TTest extends Container ? TExpected extends Container ? HasSameKeys<TTest, TExpected> extends true ? true : AssertionError<`failed/hasSameKeys`, `The test type had the keys of [ ${Join<Keys$1<TTest>, ", ">} ] which did not match the expected keys of [ ${Join<Keys$1<TExpected>, ", ">} ]`, {
4120
+ test: TTest;
4121
+ expected: TExpected;
4122
+ }> : AssertionError<`failed/hasSameKeys`, `While using the test assertion of 'hasSameKeys' the expected value was NOT a container type!`, {
4123
+ test: TTest;
4124
+ expected: TExpected;
4125
+ }> : AssertionError<`failed/hasSameKeys`, `While using the test assertion of 'hasSameKeys' the test type was found NOT to be a container which by extension makes this test fail!`, {
4126
+ test: TTest;
4127
+ expected: TExpected;
4128
+ }> : TOp extends "hasSameValues" ? TTest extends Container ? TExpected extends Container ? HasSameValues<TTest, TExpected> extends true ? true : AssertionError<`failed/hasSameValues`, `The 'has-same-values' test assertion failed because the tuple elements had different types!`, {
4129
+ test: TTest;
4130
+ expected: TExpected;
4131
+ }> : AssertionError<`failed/hasSameValues`, `The expected type for this test was NOT a 'Container' type and it must be when using the 'has-same-values' test assertion!`, {
4132
+ test: TTest;
4133
+ expected: TExpected;
4134
+ }> : AssertionError<`failed/hasSameValues`, `The 'has-same-values' test assertion failed because the test value was NOT a tuple type!`, {
4135
+ test: TTest;
4136
+ expected: TExpected;
4137
+ }> : TOp extends `isError` ? IsValidExpectedError<TExpected> extends true ? IsString<TExpected> extends true ? ValidateErrorType<TTest, As<TExpected, string>> : TExpected extends null | undefined | true ? TTest extends Error ? true : AssertionError<`failed/isError`, `The tested type was not an error!`, {
4138
+ test: TTest;
4139
+ expected: TExpected;
4140
+ }> : And<[TExpected extends Error ? true : false, TTest extends Error ? false : true]> extends true ? AssertionError<`failed/isError`, `The type assertion 'isError' failed because the tested type is NOT an error and therefore will never extend the expected Error!`, {
4141
+ test: TTest;
4142
+ expected: TExpected;
4143
+ }> : And<[TExpected extends Error ? true : false, TTest extends TExpected ? true : false]> extends true ? true : AssertionError<`failed/isError`, `While the tested type is an error, it does not extend the error type which extends the expected type`, {
4144
+ test: TTest;
4145
+ expected: TExpected;
4146
+ }> : AssertionError<`failed/isError`, `The expected error type is not a valid type! Using a string value is allowed to indicate the error's "type", Using 'null', 'undefined', or 'true' are also valid to allow matching on any error type, and of course any type which extends Error is also valid!`, {
4147
+ test: TTest;
4148
+ expected: TExpected;
4149
+ }> : TOp extends "containsAll" ? TExpected extends readonly string[] ? TTest extends string ? ContainsAll<TTest, TExpected> extends true ? true : AssertionError<`failed/containsAll`, `The test string -- '${TTest}' -- did not extend all of the substrings it was supposed to!`, {
4150
+ test: TTest;
4151
+ expected: TExpected;
4152
+ }> : AssertionError<`failed/containsAll`, `The test value for a 'containsAll' assertion was not a string!`, {
4153
+ test: TTest;
4154
+ expected: TExpected;
4155
+ }> : AssertionError<`failed/containsAll`, `The expected type for a 'containsAll' assertion must be a tuple of strings!`, {
4156
+ test: TTest;
4157
+ expected: TExpected;
4158
+ }> : never;
4159
+ /**
4160
+ * **Test**`<TTest, TOp, TExpected>`
4161
+ *
4162
+ * A type test which `TTest` when _compared_ using the `TOp` operation
4163
+ * to `TExpected` results in a true outcome.
4164
+ *
4165
+ * ### Operations
4166
+ *
4167
+ * - `equals`
4168
+ * - `extends`
4169
+ * - `doesNotExtend`
4170
+ * - `hasSameKeys`
4171
+ * - `hasSameValues`
4172
+ * - `isError`
4173
+ * - `containsAll`
4174
+ */
4175
+ type Test<TTest, TOp extends AssertionOp, TExpected> = [IsAny<TTest>] extends [true] ? AssertionError<`invalid-test/any-type`, `A type test passed in "any" as the test value! This is not allowed.`, {
4176
+ test: TTest;
4177
+ expected: TExpected;
4178
+ assertion: TOp;
4179
+ }> : [IsAny<TExpected>] extends [true] ? AssertionError<`invalid-test/any-type`, `A type test passed in "any" as the expected type! This is not allowed.`, {
4180
+ test: TTest;
4181
+ expected: TExpected;
4182
+ assertion: TOp;
4183
+ }> : [IsAny<Assert<TTest, TOp, TExpected>>] extends [true] ? AssertionError<`invalid-test/any-type`, `The test evaluated to ANY! This indicates a problem in the test assertion!`, {
4184
+ test: TTest;
4185
+ expected: TExpected;
4186
+ assertion: TOp;
4187
+ }> : [IsNever<Assert<TTest, TOp, TExpected>>] extends [true] ? AssertionError<`invalid-test/never-type`, `The test evaluated to NEVER! This indicates a problem in the test assertion!`, {
4188
+ test: TTest;
4189
+ expected: TExpected;
4190
+ assertion: TOp;
4191
+ }> : Assert<TTest, TOp, TExpected>;
4192
+ //#endregion
4193
+ //#region src/assertions/TypeError.d.ts
4194
+ type Invalid = `invalid-test/${"any-type" | "never-type"}`;
4195
+ type Failed = `failed/${AssertionOp}`;
4196
+ /**
4197
+ * **TypeError**
4198
+ *
4199
+ * An error resulting from a type assertion.
4200
+ *
4201
+ * **Related:** `AssertEquals`, `AssertExtends`, `AssertTrue`, `AssertFalse`
4202
+ */
4203
+ type AssertionError<TType extends Invalid | Failed = Invalid | Failed, TMsg extends string = string, TContext extends {
4204
+ test: unknown;
4205
+ expected: unknown;
4206
+ [key: string]: unknown;
4207
+ } = {
4208
+ test: unknown;
4209
+ expected: unknown;
4210
+ [key: string]: unknown;
4211
+ }> = {
4212
+ kind: "AssertionError";
4213
+ classification: TType;
4214
+ message: TMsg;
4215
+ testType: TContext["test"];
4216
+ expectedType: TContext["expected"];
4217
+ ctx: WithoutKeys<TContext, "test" | "expected">;
4218
+ };
4219
+ //#endregion
3865
4220
  //#region src/base-types/AnyArray.d.ts
3866
4221
  /**
3867
4222
  * **AnyArray**
@@ -6031,191 +6386,6 @@ type DoesNotExtend<TValue, TNotExtends> = TValue extends TNotExtends ? false : t
6031
6386
  type EveryLength<T extends readonly (string | string[])[], N extends number> = [] extends T ? true : First$1<T>["length"] extends N ? EveryLength<AfterFirst<T>, N> : false;
6032
6387
  //# sourceMappingURL=EveryLength.d.ts.map
6033
6388
  //#endregion
6034
- //#region src/boolean-logic/operators/compare/Expect.d.ts
6035
- type AssertionType = "equals" | "extends" | "hasSameKeys" | "hasSameValues" | "isError" | "containsAll" | "doesNotExtend";
6036
- type TypeError<TType extends string, TMsg extends string, TContext extends {
6037
- test: unknown;
6038
- expected: unknown;
6039
- }> = {
6040
- classification: TType;
6041
- message: TMsg;
6042
- testType: TContext["test"];
6043
- expectedType: TContext["expected"];
6044
- };
6045
- /** ensure the expected type for error checking is valid */
6046
- type IsValidExpectedError<T> = T extends Error | null | true | undefined | string ? true : false;
6047
- /**
6048
- * hands validation for Errors which are being checked for type/subtype
6049
- */
6050
- type ValidateErrorType<TTest, TExpected extends string> = TTest extends Error ? TExpected extends `${infer Type}/${infer Subtype}` ? "type" extends keyof TTest ? "subType" extends keyof TTest ? And<[TTest["type"] extends Err<TExpected>["type"] ? true : false, TTest["subType"] extends Err<TExpected>["subType"] ? true : false]> extends true ? true : TypeError<`failed/isError`, `The tested type is an Error but does not match the type/subtype of '${TExpected}'. Instead it was '${As<TTest["type"], string>}/${As<TTest["subType"], string>}'`, {
6051
- test: TTest;
6052
- expected: TExpected;
6053
- type: Type;
6054
- subType: Subtype;
6055
- }> : TTest["type"] extends Err<TExpected>["type"] ? true : TypeError<`failed/isError`, `The tested type is an Error but it's type was not of the type "${Type}"!`, {
6056
- test: TTest;
6057
- expected: TExpected;
6058
- type: Type;
6059
- subType: Subtype;
6060
- }> : "type" extends keyof TTest ? TTest["type"] extends Err<TExpected>["type"] ? true : TypeError<`failed/isError`, `The tested type is an Error but it's type was not of the type "${Type}"!`, {
6061
- test: TTest;
6062
- expected: TExpected;
6063
- }> : TypeError<`failed/isError`, `The tested type is an Error but has no 'type' property defined so unable to test it's value against the expected type of '${Err<TExpected>["type"]}'`, {
6064
- test: TTest;
6065
- expected: TExpected;
6066
- }> : "type" extends keyof TTest ? TTest["type"] extends Err<TExpected>["type"] ? true : TypeError<`failed/isError`, `The tested type is an Error but it's type was not of the type ${Err<TExpected>["type"]}; instead type property was: ${As<TTest["type"], string>}`, {
6067
- test: TTest;
6068
- expected: TExpected;
6069
- }> : TypeError<`failed/isError`, `The tested type is an Error but has no 'type' property defined so unable to test it's value against the expected type of ${Err<TExpected>["type"]}`, {
6070
- test: TTest;
6071
- expected: TExpected;
6072
- }> : TypeError<`invalid-test/isError`, `The test appears to be an attempt to test if a type is particular type/subtype of an Error but must be a valid string literal and wasn't!`, {
6073
- test: TTest;
6074
- expected: TExpected;
6075
- }>;
6076
- /**
6077
- * **Expect**`<T>`
6078
- *
6079
- * A type testing assertion which is expected to evaluate to `true`.
6080
- *
6081
- * - often used with the `Test` type utility (also from **inferred-types**
6082
- * library)
6083
- * - use with `Test` is preferred as it eliminates silent errors such when
6084
- * tests evaluate to `never` or `any` and provides a meaningful error report
6085
- * - but any assertion which is expected to result in `true` is a valid test
6086
- * here
6087
- */
6088
- type Expect<T extends true> = T;
6089
- type Assert<TTest, TOp extends AssertionType, TExpected> = TOp extends "equals" ? [IsEqual<TTest, TExpected>] extends [true] ? true : TypeError<`failed/equals`, `The type being tested did not equal the expected type!`, {
6090
- test: TTest;
6091
- expected: TExpected;
6092
- }> : TOp extends "extends" ? Extends<TTest, TExpected> extends true ? true : TypeError<`failed/extends`, `The type being tested did not extend the expected type!`, {
6093
- test: TTest;
6094
- expected: TExpected;
6095
- }> : TOp extends "doesNotExtend" ? DoesNotExtend<TTest, TExpected> extends true ? true : TypeError<`failed/doesNotExtend`, `The test type extended the comparison type but was not supposed to!`, {
6096
- test: TTest;
6097
- expected: TExpected;
6098
- }> : TOp extends "hasSameKeys" ? TTest extends Container ? TExpected extends Container ? HasSameKeys<TTest, TExpected> extends true ? true : TypeError<`failed/has-same-keys`, `The test type had the keys of [ ${Join<Keys$1<TTest>, ", ">} ] which did not match the expected keys of [ ${Join<Keys$1<TExpected>, ", ">} ]`, {
6099
- test: TTest;
6100
- expected: TExpected;
6101
- }> : TypeError<`invalid-test/non-container`, `While using the test assertion of 'hasSameKeys' the expected value was NOT a container type!`, {
6102
- test: TTest;
6103
- expected: TExpected;
6104
- }> : TypeError<`failed/has-same-keys`, `While using the test assertion of 'hasSameKeys' the test type was found NOT to be a container which by extension makes this test fail!`, {
6105
- test: TTest;
6106
- expected: TExpected;
6107
- }> : TOp extends "hasSameValues" ? TTest extends Container ? TExpected extends Container ? HasSameValues<TTest, TExpected> extends true ? true : TypeError<`failed/has-same-values`, `The 'has-same-values' test assertion failed because the tuple elements had different types!`, {
6108
- test: TTest;
6109
- expected: TExpected;
6110
- }> : TypeError<`invalid-test/has-same-values`, `The expected type for this test was NOT a 'Container' type and it must be when using the 'has-same-values' test assertion!`, {
6111
- test: TTest;
6112
- expected: TExpected;
6113
- }> : TypeError<`failed/has-same-values`, `The 'has-same-values' test assertion failed because the test value was NOT a tuple type!`, {
6114
- test: TTest;
6115
- expected: TExpected;
6116
- }> : TOp extends `isError` ? IsValidExpectedError<TExpected> extends true ? IsString<TExpected> extends true ? ValidateErrorType<TTest, As<TExpected, string>> : TExpected extends null | undefined | true ? TTest extends Error ? true : TypeError<`failed/isError`, `The tested type was not an error!`, {
6117
- test: TTest;
6118
- expected: TExpected;
6119
- }> : And<[TExpected extends Error ? true : false, TTest extends Error ? false : true]> extends true ? TypeError<`failed/isError`, `The type assertion 'isError' failed because the tested type is NOT an error and therefore will never extend the expected Error!`, {
6120
- test: TTest;
6121
- expected: TExpected;
6122
- }> : And<[TExpected extends Error ? true : false, TTest extends TExpected ? true : false]> extends true ? true : TypeError<`failed/isError`, `While the tested type is an error, it does not extend the error type which extends the expected type`, {
6123
- test: TTest;
6124
- expected: TExpected;
6125
- }> : TypeError<`invalid-test/isError`, `The expected error type is not a valid type! Using a string value is allowed to indicate the error's "type", Using 'null', 'undefined', or 'true' are also valid to allow matching on any error type, and of course any type which extends Error is also valid!`, {
6126
- test: TTest;
6127
- expected: TExpected;
6128
- }> : TOp extends "containsAll" ? TExpected extends readonly string[] ? TTest extends string ? ContainsAll<TTest, TExpected> extends true ? true : TypeError<`failed/containsAll`, `The test string -- '${TTest}' -- did not extend all of the substrings it was supposed to!`, {
6129
- test: TTest;
6130
- expected: TExpected;
6131
- }> : TypeError<`failed/containsAll`, `The test value for a 'containsAll' assertion was not a string!`, {
6132
- test: TTest;
6133
- expected: TExpected;
6134
- }> : TypeError<`invalid-test/containsAll`, `The expected type for a 'containsAll' assertion must be a tuple of strings!`, {
6135
- test: TTest;
6136
- expected: TExpected;
6137
- }> : never;
6138
- /**
6139
- * **Test**`<TTest, TOp, TExpected>`
6140
- *
6141
- * A type test which `TTest` when _compared_ using the `TOp` operation
6142
- * to `TExpected` results in a true outcome.
6143
- *
6144
- * ### Operations
6145
- *
6146
- * - `equals`
6147
- * - `extends`
6148
- * - `doesNotExtend`
6149
- * - `hasSameKeys`
6150
- * - `hasSameValues`
6151
- * - `isError`
6152
- * - `containsAll`
6153
- */
6154
- type Test<TTest, TOp extends AssertionType, TExpected> = [IsAny<TTest>] extends [true] ? TypeError<`invalid-test/any-type`, `A type test passed in "any" as the test value! This is not allowed.`, {
6155
- test: TTest;
6156
- expected: TExpected;
6157
- assertion: TOp;
6158
- }> : [IsAny<TExpected>] extends [true] ? TypeError<`invalid-test/any-type`, `A type test passed in "any" as the expected type! This is not allowed.`, {
6159
- test: TTest;
6160
- expected: TExpected;
6161
- assertion: TOp;
6162
- }> : [IsAny<Assert<TTest, TOp, TExpected>>] extends [true] ? TypeError<`invalid-test/any`, `The test evaluated to ANY! This indicates a problem in the test assertion!`, {
6163
- test: TTest;
6164
- expected: TExpected;
6165
- assertion: TOp;
6166
- }> : [IsNever<Assert<TTest, TOp, TExpected>>] extends [true] ? TypeError<`invalid-test/never`, `The test evaluated to NEVER! This indicates a problem in the test assertion!`, {
6167
- test: TTest;
6168
- expected: TExpected;
6169
- assertion: TOp;
6170
- }> : Assert<TTest, TOp, TExpected>;
6171
- type Validate$11<TTest, TOp extends AssertionType, TExpected> = [IsAny<TTest>] extends [true] ? TypeError<`invalid-test/any-type`, `A type test passed in "any" as the test value! This is not allowed.`, {
6172
- test: TTest;
6173
- expected: TExpected;
6174
- assertion: TOp;
6175
- }> : [IsAny<TExpected>] extends [true] ? TypeError<`invalid-test/any-type`, `A type test passed in "any" as the expected type! This is not allowed.`, {
6176
- test: TTest;
6177
- expected: TExpected;
6178
- assertion: TOp;
6179
- }> : [IsAny<Assert<TTest, TOp, TExpected>>] extends [true] ? TypeError<`invalid-test/any`, `The test evaluated to ANY! This indicates a problem in the test assertion!`, {
6180
- test: TTest;
6181
- expected: TExpected;
6182
- assertion: TOp;
6183
- }> : [IsNever<Assert<TTest, TOp, TExpected>>] extends [true] ? TypeError<`invalid-test/never`, `The test evaluated to NEVER! This indicates a problem in the test assertion!`, {
6184
- test: TTest;
6185
- expected: TExpected;
6186
- assertion: TOp;
6187
- }> : undefined;
6188
- /**
6189
- * **AssertEqual**`<TTest, TExpected>`
6190
- *
6191
- * Type test assertion that `TTest` _equals_ `TExpected`.
6192
- */
6193
- type AssertEqual<TTest, TExpected> = Validate$11<TTest, "equals", TExpected> extends Error ? Validate$11<TTest, "equals", TExpected> : IsEqual<TTest, TExpected>;
6194
- /**
6195
- * **AssertNotEqual**`<TTest, TExpected>`
6196
- *
6197
- * Type test assertion that `TTest` _does not equal_ `TExpected`.
6198
- */
6199
- type AssertNotEqual<TTest, TExpected> = Validate$11<TTest, "equals", TExpected> extends Error ? Validate$11<TTest, "equals", TExpected> : Not<IsEqual<TTest, TExpected>>;
6200
- /**
6201
- * **AssertTrue**`<TTest>`
6202
- *
6203
- * Type test assertion that `TTest` is `true`.
6204
- */
6205
- type AssertTrue<TTest> = Validate$11<TTest, "equals", true> extends Error ? Validate$11<TTest, "equals", true> : IsEqual<TTest, true>;
6206
- /**
6207
- * **AssertFalse**`<TTest>`
6208
- *
6209
- * Type test assertion that `TTest` is `false`.
6210
- */
6211
- type AssertFalse<TTest> = Validate$11<TTest, "equals", false> extends Error ? Validate$11<TTest, "equals", false> : IsEqual<TTest, false>;
6212
- /**
6213
- * **AssertSameValues**`<TTest>`
6214
- *
6215
- * Type test assertion that `TTest` is `false`.
6216
- */
6217
- type AssertSameValues<TTest extends Container, TExpected extends Container> = Validate$11<TTest, "hasSameValues", TExpected> extends Error ? Validate$11<TTest, "hasSameValues", TExpected> : HasSameValues<TTest, TExpected>;
6218
- //#endregion
6219
6389
  //#region src/boolean-logic/operators/compare/Extends.d.ts
6220
6390
  /**
6221
6391
  * **Extends**`<T,U>`
@@ -28517,5 +28687,5 @@ type Test$1<T extends string | number | readonly unknown[], N extends number, O
28517
28687
  */
28518
28688
  type ValidateLength<T extends string | number | readonly unknown[], O extends ValidateLengthOptions> = T extends readonly unknown[] ? [IsWideArray<T>] extends [true] ? T | Err<`invalid-length/${"min" | "max"}`> : Test$1<T, T["length"], O> : T extends string ? string extends T ? T | Err<`invalid-length/${"min" | "max"}`> : Test$1<T, Length<T>, O> : T extends number ? ValidateLength<`${T}`, O> extends `${number}` ? AsNumber<ValidateLength<`${T}`, O>> : ValidateLength<`${T}`, O> : never;
28519
28689
  //#endregion
28520
- export { Abs, AbsMaybe, Acceleration, AccelerationMetrics, AccelerationUom, Add, AddIfUnique, AddKeyValue, AddPositive, AddUrlPathSegment, AfterFirst, AfterFirstChar, AfterLast, AllCaps, AllExtend, AllLengthOf, AllLiteral, AllNumericLiterals, AllOptionalElements, AllStringLiterals, AlphaChar, AlphanumericChar, AmazonUrl, AmericanExpress, And, AnyArray, AnyFunction, AnyMap, AnyObject, AnyQueryParams, AnySet, AnyWeakMap, Api, ApiCallback, ApiConfig, ApiEscape, ApiHandler, ApiOptions, ApiReturn, ApiState, ApiStateInitializer, ApiSurface, Append, AppendRight, AppleUrl, ApplyTemplate, AreIncompatible, AreSameLength, AreSameType, Area, AreaMetrics, AreaUom, ArgUnion, AriaDocStructureRoles, AriaLandmarkRoles, AriaLiveRegionRoles, AriaRole, AriaWidgetRoles, AriaWindowRoles, ArrayElementType, ArrayTo, ArrayToString, ArrayTypeDefn, As, AsApi, AsArray, AsBoolean, AsChoice, AsContainer, AsDateMeta, AsDefined, AsDictionary, AsDoneFn, AsEscapeFunction, AsFinalizedConfig, AsFnMeta, AsFourDigitYear, AsFromTo, AsFunction, AsHtmlComponentTag, AsHtmlTag, AsIndexOf, AsInputToken, AsLeft, AsLeftRight, AsLiteralTemplate, AsNarrowingFn, AsNegativeNumber, AsNonNull, AsNumber, AsNumberWhenPossible, AsNumericArray, AsObject, AsObjectKey, AsObjectKeys, AsOptionalParamFn, AsOutputToken, AsPropertyKey, AsRecord, AsRef, AsRelativeDate, AsRight, AsSimpleType, AsSomething, AsStaticFn, AsStaticTemplate, AsString, AsStringUnion, AsTakeState, AsTemplateType, AsTemplateTypes, AsTuple, AsTwoDigitMonth, AsTypeSubtype, AsUnion, AsUnionToken, AsVueComputedRef, AssertEqual, AssertFalse, AssertNotEqual, AssertSameValues, AssertTrue, AssertionType, AsyncFunction, Asynchronous, AustralianNewsCompanies, AustralianNewsUrls, AvailableConverters, Awaited$1 as Awaited, BCP47, BackTick, BareCssSelector, BaseRuntimeType, BaseType, BaseTypeToken, BeforeLast, BelgianNewsCompanies, BelgianNewsUrls, BespokeLiteral, BespokeUnion, BestBuyUrl, BooleanLike, BooleanSort, BooleanSortOptions, Box, Bracket, BracketAndQuoteNesting, BracketNesting, Brand, BrandSymbol, Break$1 as Break, BuildDefinition, CSV, Callback$1 as Callback, CamelCase, CamelKeys, CanadianNewsCompanies, CanadianNewsUrls, CapFirstAlpha, CapitalizeEachUnionMember, CapitalizeWords, Cardinality$1 as Cardinality, Cardinality0, Cardinality1, CardinalityExplicit, CardinalityFilter0, CardinalityFilter1, CardinalityIn, CardinalityInput, CardinalityNode, CardinalityOut, CargoDependency, CargoToml, CharCount, Chars, ChewyUrl, ChineseNewsCompanies, ChineseNewsUrls, Choice, ChoiceApi, ChoiceApiConfig, ChoiceApiOptions, ChoiceBuilder, ChoiceCallback, ChoiceValue, ClosingBracket, ClosingMark, ClosingMarkPlus, CodePointOf, ColorFnOptOpacity, ColorFnValue, ColorParam, CombinedKeys, CommonHtmlElement, Comparator, Compare, CompareNumbers, ComparisonAccept, ComparisonDesc, ComparisonFn, ComparisonLookup, ComparisonMode, ComparisonOpConfig, ComparisonOperation, ComparisonParamConvert, ComparisonParamConvert__List, ComparisonParamConvert__Unit, Concat, ConfigDefinition, ConfiguredMap, Consonant, Consonants, ConstrainObject, ConstrainedObjectCallback, ConstrainedObjectIdentity, Constructor, Container, ContainerBlockKey, ContainerKeyGuarantee, Contains, ContainsAll, ContainsSome, Continent, Conversion, ConvertTypeOf, ConvertWideTokenNames, ConverterCoverage, ConverterDefn, CostCoUrl, CostcoUrl, Count$1 as Count, CountryPhoneNumber, Cr, CrThenIndent, CreateChoice, CreateDictHash, CreateDictShape, CreateKV, CreateLookup, CreditCard, CssAbsolutionPositioningProperties, CssAlignContent, CssAlignItems, CssAlignProperties, CssAlignSelf, CssAnimation, CssAnimationComposition, CssAnimationDelay, CssAnimationDirection, CssAnimationDuration, CssAnimationFillMode, CssAnimationIterationCount, CssAnimationPlayState, CssAnimationProperties, CssAnimationTimingFunction, CssAppearance, CssAspectRatio, CssBackdropFilter, CssBackgroundProperties, CssBorderCollapse, CssBorderImageRepeat, CssBorderImageSource, CssBorderInlineSizing, CssBorderProperties, CssBorderStyle, CssBorderWidth, CssBoxAlign, CssBoxDecorationBreak, CssBoxProperties, CssBoxShadow, CssBoxSizing, CssBreak, CssBreakInside, CssBreakProperties, CssCalc, CssClamp, CssClassSelector, CssColor, CssColorFn, CssColorLight, CssColorMix, CssColorMixLight, CssColorModel, CssColorSpace, CssColorSpacePrimary, CssContent, CssCursor, CssDefinition, CssDisplay, CssDisplayStatePseudoClasses, CssFlex, CssFlexBasis, CssFlexDirection, CssFlexFlow, CssFlexGrow, CssFlexShrink, CssFloat, CssFontFamily, CssFontFeatureSetting, CssFontKerning, CssFontLanguageOverride, CssFontPalette, CssFontProperties, CssFontStyle, CssFontSynthesis, CssFontWeight, CssFontWidth, CssFunctionalPseudoClass, CssGap, CssGlobal, CssHangingPunctuation, CssHexColor, CssHsb, CssHsl, CssIdSelector, CssImageOrientation, CssImageRendering, CssImageResolution, CssInputPseudoClasses, CssJustifyContent, CssJustifyItems, CssJustifyProperties, CssJustifySelf, CssKeyframeTimestamp, CssKeyframeTimestampSuggest, CssLetterSpacing, CssLinguisticPseudoClasses, CssListStyle, CssLocationPseudoClasses, CssMargin, CssMarginBlock, CssMarginBlockEnd, CssMarginBlockStart, CssMarginBottom, CssMarginInline, CssMarginInlineEnd, CssMarginInlineStart, CssMarginLeft, CssMarginProperties, CssMarginRight, CssMarginTop, CssMixBlendMode, CssNamedColors, CssNamedSizes, CssObjectFit, CssObjectPosition, CssOffsetDistance, CssOffsetPath, CssOffsetPosition, CssOffsetProperties, CssOkLch, CssOpacity, CssOutline, CssOutlineColor, CssOutlineOffset, CssOutlineProperties, CssOutlineStyle, CssOutlineWidth, CssOverflowAnchor, CssOverflowBlock, CssOverflowClipMargin, CssOverflowInline, CssOverflowProperties, CssOverflowX, CssOverflowY, CssPadding, CssPaddingBlock, CssPaddingBlockEnd, CssPaddingBlockStart, CssPaddingBottom, CssPaddingInline, CssPaddingInlineEnd, CssPaddingInlineStart, CssPaddingLeft, CssPaddingProperties, CssPaddingRight, CssPaddingTop, CssPerspectiveOrigin, CssPlaceContent, CssPlaceItems, CssPlaceProperties, CssPlaceSelf, CssPointerEvent, CssPosition, CssProperty, CssPseudoClass, CssPseudoClassDefn, CssResourceStatePseudoClasses, CssRgb, CssRgba, CssRotation, CssRound, CssSelector, CssSizing, CssSizingFunction, CssSizingLight, CssStroke, CssStrokeDasharray, CssStrokeProperties, CssTagSelector, CssTextAlign, CssTextDecorationLine, CssTextDecorationStyle, CssTextIndent, CssTextJustify, CssTextOrientation, CssTextOverflow, CssTextPosition, CssTextProperties, CssTextRendering, CssTextTransform, CssTextWrap, CssTextWrapMode, CssTextWrapStyle, CssTimePseudoClasses, CssTiming, CssTransform, CssTransformBox, CssTransformOrigin, CssTransformProperties, CssTransformStyle, CssTranslate, CssTranslateFn, CssTreePseudoClasses, CssUserActionPseudoClasses, CssVar, CssVarWithFallback, CssWhiteSpace, CssWhiteSpaceCollapse, CssWordBreak, CssWritingMode, Csv, CsvToJsonTuple, CsvToStrUnion, CsvToTuple, CsvToTupleStr, CsvToUnion, Current, CurrentMetrics, CurrentUom, CvsUrl, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DanishNewsCompanies, DanishNewsUrls, DashToSnake, DashUppercase, DateLike, DateMeta, DatePlus, DateSeparator, DateSource, DateType, DayJsLike, DaysInMonth, DecomposeMapConfig, Decrement, DefaultManyToOneMapping, DefaultNesting, DefaultOneToManyMapping, DefaultOneToOneMapping, DefaultOptions, DefaultTemplateBlocks, DefineModifiers, DefineObject, DefineObjectApi, DefineObjectWith, DefineStatelessApi, DefineTokenDetail, DefineTuple, Defined, DellUrl, Delta$1 as Delta, DeltaLight, DeployConfig, DialCountryCode, Dict$1 as Dict, DictChangeValue, Dictionary, DictionaryTypeDefn, Digit, DigitNonZero, Digital, DigitalLiteral, Digitize, DinersClub, Discover, Distance, DistanceMetrics, DistanceUom, DistinguishEmpty, Divide, DnsName, DockerCompose, DockerDependsOn, DockerService, DoesExtend, DoesNotExtend, DomainName, DoneFnTuple, DotPathFor, DoubleQuote, DropChars, DropLeading, DropTrailing, DropVariadic, DropVariadicHead, DropVariadicTail, DutchNewsCompanies, DutchNewsUrls, DynamicSegment, DynamicToken, DynamicTokenApi, Each, EachAsString, EachAsStringLiteralTemplate, EachOperation, EbayUrl, ElementOf, Email, Empty, EmptyObject, EmptyString, EncodingDefinition, EndsWith, EndsWithNumber, Energy, EnergyMetrics, EnergyUom, EnsureKeys, EnsureLeading, EnsureLeadingEvery, EnsureSurround, EnsureTrailing, EpochInMs, EpochInSeconds, Equals, Err, ErrContext, ErrMsg, ErrType, EscapeFunction, EscapeRegex, EscapedSafeEncodingConversion, EsotericHtmlElement, EtsyUrl, Even, EvenNumber, Every, EveryLength, ExcludeIndex, Exif, ExifAttributionInfo, ExifCameraInfo, ExifCompression, ExifContrast, ExifDateTimeInfo, ExifEmbedPolicy, ExifExtraneous, ExifFlashValues, ExifGainControl, ExifGps, ExifLightSource, ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, Expand, ExpandDictionary, ExpandRecursively, ExpandTuple, ExpandUnion, Expect, ExplicitFunction, ExplicitlyEmptyObject, Extends, ExtendsAll, ExtendsEvery, ExtendsNone, ExtendsSome, ExtractCaptureGroups, ExtractOptionalElements, ExtractOptionalKeys, ExtractRequiredElements, Fail$1 as Fail, FailFast, FailFastOptions, Fallback, FalsyValue, FifoQueue, FillStringHole, Filter, FilterByNestingLevel, FilterFn, FinalizedMapConfig, Find, FindFunction, FindMaxLength, First$1 as First, FirstChar, FirstDefined, FirstKey, FirstOfEach, FirstSet, FirstString, FirstValue, FixedLengthArray, Flatten, FlattenUnion, FluentApi, FluentFn, FluentState, FnAllowingProps, FnArgsDefn, FnDefn, FnFrom, FnKeyValue, FnMeta, FnMetaShape, FnPropertiesDefn, FnReturn, FnReturnTypeDefn, FnWithDescription, FnWithProps, FourDigitYear, FrenchNewsCompanies, FrenchNewsUrls, Frequency, FrequencyMetrics, FrequencyUom, FromCsv, FromDefineObject, FromDefineTuple, FromDefn, FromDynamicSegment, FromInputToken, FromInputToken__Object, FromInputToken__String, FromInputToken__Tuple, FromKv, FromLiteralTemplate, FromLiteralTokens, FromMaybeRef, FromNamedDynamicSegment, FromNamedNestingConfig, FromNesting, FromRecordKeyDefn, FromShapeCallback, FromSimpleRecordKey, FromSimpleToken, FromTo, FromTypeDefn, FromWideTokens, FullWidthQuotation, FullyQualifiedUrl, GenericParam, GermanNewsCompanies, GermanNewsUrls, Get, GetBrand, GetComparator, GetComparisonParams, GetDefaultPort, GetEach, GetEscapeFunction, GetFixedKeys, GetIndexKeys, GetInputToken, GetMonthAbbrev, GetMonthName, GetMonthNumber, GetNestingEnd, GetNonVariadicLength, GetOpConfig, GetOptionalElementCount, GetPhoneCountryCode, GetPhoneNumberType, GetQueryParameterDynamics, GetRequiredElementCount, GetSeason, GetTemplateBlocks, GetTemplateParams, GetTokenNames, GetTypeOf, GetUrlDynamics, GetUrlPath, GetUrlPathDynamics, GetUrlPort, GetUrlProtocol, GetUrlProtocolPrefix, GetUrlQueryParams, GetUrlSource, GetYear, GetYouTubePageType, GitRef, GithubActionsUrl, GithubInsightPageType, GithubInsightUrl, GithubOrgUrl, GithubRepoBranchesUrl, GithubRepoDiscussionUrl, GithubRepoDiscussionsUrl, GithubRepoIssueUrl, GithubRepoIssuesListUrl, GithubRepoProjectUrl, GithubRepoProjectsUrl, GithubRepoPullRequestUrl, GithubRepoPullRequestsUrl, GithubRepoReleaseTagUrl, GithubRepoReleasesUrl, GithubRepoTagsUrl, GithubRepoUrl, GithubUrl, Grammar, GrammarTypeDefinition, HandMUrl, Handle, HandleDoneFn, HasAny, HasArray, HasCharacters, HasErrors, HasEscapeFunction, HasEvery, HasFalse, HasFunctionKeys, HasIndex, HasIndexKeys, HasIndexSignature, HasIpAddress, HasModifier, HasNetworkProtocolReference, HasNever, HasNoParameters, HasNonTemplateLiteral, HasOneParameter, HasOptionalElements, HasOptionalElements__Tuple, HasOtherCharacters, HasParameters, HasPhoneCountryCode, HasProp, HasQueryParameter, HasRequiredElements, HasRequiredProps, HasSameKeys, HasSameValues, HasTemplateLiteral, HasTrue, HasTypedFunctionKeys, HasUnionType, HasUppercase, HasUrlPath, HasUrlSource, HasVariadicHead, HasVariadicInterior, HasVariadicParameters, HasVariadicTail, HasWideBoolean, HasWideValues, HaveSameNumericSign, Healthcheck, Hemisphere, HexColor, Hexadecimal, HexadecimalChar, HomeDepotUrl, HtmlBodyElement, HtmlElement, HtmlFrameworkElement, HtmlFunctionalElement, HtmlHeaderElement, HtmlInputElement, HtmlListElement, HtmlMediaElement, HtmlStructuralElement, HtmlSymantecElement, HtmlTableElement, HtmlTag, HtmlTagAtomic, HtmlTagClose, HtmlTagOpen, Html__AtomicTag, Html__BlockTag, HttpHeader, HttpHeaders, HttpHeadingKeys, HttpVerb, HttpVerbsWithBody, HttpVerbsWithoutBody, IP6Multicast, IP6Unicast, IT_AtomicToken, IT_BooleanLiteralToken, IT_Combinators, IT_Failure, IT_Generics, IT_KvType, IT_NumericLiteralToken, IT_Parameter, IT_ParameterResults, IT_StringLiteralToken, IT_TakeArray, IT_TakeAtomic, IT_TakeFunction, IT_TakeGenerator, IT_TakeGroup, IT_TakeIntersection, IT_TakeKind, IT_TakeKvObjects, IT_TakeLiteralArray, IT_TakeNumericLiteral, IT_TakeObjectLiteral, IT_TakeOutcome, IT_TakeParameters, IT_TakePromise, IT_TakeSet, IT_TakeStringLiteral, IT_TakeTokenGeneric, IT_TakeTokenGenerics, IT_TakeUnion, IT_Token, IT_Token_Array, IT_Token_Atomic, IT_Token_Base, IT_Token_Function, IT_Token_Generator, IT_Token_Group, IT_Token_Intersection, IT_Token_Kv, IT_Token_Literal, IT_Token_Literal_Array, IT_Token_Object_Literal, IT_Token_Promise, IT_Token_Set, IT_Token_Union, IT_TupleToOutputToken, IanaAfrica, IanaAmerica, IanaAntarctica, IanaAsia, IanaEurope, IanaPacific, IanaZone, IanaZoneArea, IdentityFn, IdentityFunction, If, IfAllExtend, IfAllLiteral, IfEqual, IfEquals, IfLeft, IfLength, IfLiteralKind, IfNever, IfUnset, IfUnsetOrUndefined, IkeaUrl, ImgFormat, ImgFormatWeb, Immutable, InBetween, InBetweenOptions, Increment, Indent, Indent2, Indent4, IndentSpaces, IndentTab, IndexOf, Indexable, IndexableObject, IndianNewsCompanies, IndianNewsUrls, InlineSvg, InputToken, InputTokenSuggestions, InputToken__SimpleTokens, Integer, IntegerBrand, InternationalPhoneNumber, IntersectingKeys, Intersection, IntersectionToTuple, IntoTemplate, Inverse, InvertNumericSign, Ip4Address, Ip4AddressLike, Ip4Netmask16, Ip4Netmask24, Ip4Netmask32, Ip4Netmask8, Ip4NetmaskSuggestion, Ip4Octet, Ip4Subnet, Ip4SubnetLike, Ip6Address, Ip6AddressFull, Ip6AddressLike, Ip6Group, Ip6GroupExpansion, Ip6Loopback, Ip6Subnet, Ip6SubnetLike, IsAfter, IsAllCaps, IsAllLowercase, IsAlphanumeric, IsAmericanExpress, IsAny, IsAnyEqual, IsArray, IsAtomicTag, IsBalanced, IsBefore, IsBetweenExclusively, IsBetweenInclusively, IsBoolean, IsBooleanLiteral, IsBranded, IsCapitalized, IsComputedRef, IsContainer, IsCreditCard, IsCssHexadecimal, IsCsv, IsDateLike, IsDayJs, IsDefined, IsDictionary, IsDictionaryDefinition, IsDomainName, IsDotPath, IsDoubleLeap, IsEmpty, IsEmptyArray, IsEmptyContainer, IsEmptyObject, IsEmptyString, IsEpochInMilliseconds, IsEpochInSeconds, IsEqual, IsErrMsg, IsError, IsEscapeFunction, IsFalse, IsFalsy, IsFloat, IsFnWithDictionary, IsFourDigitYear, IsFunction, IsGreaterThan, IsGreaterThanOrEqual, IsHexadecimal, IsHtmlClosingTag, IsInputToken, IsInputTokenSuccess, IsInteger, IsIp4Address, IsIp4Octet, IsIp6Address, IsIp6HexGroup, IsIpAddress, IsIsoDate, IsIsoDateTime, IsIsoFullDate, IsIsoFullDateTime, IsIsoMonthDate, IsIsoTime, IsIsoYear, IsIsoYearMonth, IsIterable, IsJsDate, IsLeapYear, IsLength, IsLessThan, IsLessThanOrEqual, IsLiteral, IsLiteralContainer, IsLiteralFn, IsLiteralKind, IsLiteralLike, IsLiteralLikeArray, IsLiteralLikeObject, IsLiteralLikeTuple, IsLiteralNumber, IsLiteralObject, IsLiteralScalar, IsLiteralString, IsLiteralTuple, IsLiteralUnion, IsLowerAlpha, IsLuxonDateTime, IsMixedUnion, IsMoment, IsNarrower, IsNarrowingFn, IsNegativeNumber, IsNestingConfig, IsNestingEnd, IsNestingKeyValue, IsNestingMatchEnd, IsNestingStart, IsNestingTuple, IsNever, IsNonEmptyContainer, IsNonEmptyObject, IsNonLiteralUnion, IsNotEqual, IsNothing, IsNull, IsNumber, IsNumberLike, IsNumericLiteral, IsObject, IsObjectKeyRequiringQuotes, IsOk, IsOptional, IsPhoneNumber, IsPositiveNumber, IsReadonlyArray, IsReadonlyObject, IsRequired, IsSameContainerType, IsSameDay, IsSameMonth, IsSameMonthYear, IsSameYear, IsScalar, IsSet, IsSingleChar, IsSingleSided, IsSingularNoun, IsStaticFn, IsStaticTemplate, IsStrictEmptyObject, IsStrictPromise, IsString, IsStringLiteral, IsSubstring, IsSymbol, IsTemplateLiteral, IsThenable, IsTrue, IsTruthy, IsTuple, IsTwoDigitDate, IsTwoDigitMonth, IsUndefined, IsUnion, IsUnionArray, IsUniqueSymbol, IsUnitPrimitive, IsUnknown, IsUnset, IsUrl, IsValidDotPath, IsValidIndex, IsVariable, IsVariadicArray, IsVisaMastercard, IsVueRef, IsWhitespace, IsWideArray, IsWideBoolean, IsWideContainer, IsWideNumber, IsWideObject, IsWideScalar, IsWideString, IsWideSymbol, IsWideType, IsWideUnion, IsYouTubePlaylist, IsYouTubeUrl, IsYouTubeVideoUrl, Iso3166Alpha2Lookup, Iso3166Alpha3Lookup, Iso3166CodeLookup, Iso3166CountryLookup, Iso3166_1_Alpha2, Iso3166_1_Alpha3, Iso3166_1_CountryCode, Iso3166_1_CountryName, Iso3166_1_Lookup, Iso3166_1_Token, IsoDate$1 as IsoDate, IsoDate30, IsoDate31, IsoDateTime, IsoFullDate, IsoFullDateTimeLike, IsoModernDoubleLeap, IsoMonthDate, IsoTime, IsoTimeLike, IsoYear, IsoYearMonth, IsolateErrors, IsolatedResults, ItalianNewsCompanies, ItalianNewsUrls, JapaneseNewsCompanies, JapaneseNewsUrls, Jcb, Join, JsDateLike, JsonRxEncodingSpecifier, JsonRxMessageEncoding, JsonRxPayloadEncoding, JsonRxProtocol, JustFunction, KebabCase, KebabKeys, KeyOf, KeyValue, Keys$1 as Keys, KeysEqualValue, KeysNotEqualValue, KeysOverlap, KeysUnion, KeysWithError, KeysWithValue, KeysWithoutValue, KlassMeta, KrogerUrl, KvFn, KvFnDefn, Last$1 as Last, LastChar, LastOfEach, LeadingNonAlpha, Left$1 as Left, LeftContains, LeftDoubleMark, LeftEquals, LeftExtends, LeftHeavyDoubleTurned, LeftHeavySingleTurned, LeftIncludes, LeftLowDoublePrime, LeftReversedDoublePrime, LeftRight, LeftRight__Operations, LeftSingleMark, LeftWhitespace, Length, LessThan, LessThanOrEqual, LexerDelta, LexerState, LifoQueue, LikeRegExp, List, LiteralFnModifiers, LiteralLikeModifiers, LiteralModifiers, LiteralNumberModifiers, LiteralObjectModifiers, LiteralStringModifiers, LocalPhoneNumber, LoggingOptions, Logic, LogicFunction, LogicHandler, LogicOptions, LogicalCombinator, LogicalReturns, Longest, LowerAllCaps, LowerAlphaChar, LowesUrl, Luminosity, LuminosityMetrics, LuminosityUom, LuxonLikeDateTime, LuxonStaticDateTime, MacysUrl, Maestro, MakeKeysOptional, MakeKeysRequired, MakeOptional, MakePropsMutable, MakeRequired, ManyToMany, ManyToOne, ManyToZero, MapCard, MapCardinality, MapCardinalityFrom, MapCardinalityIllustrated, MapConfig, MapCoverage, MapFn, MapFnInput, MapFnOutput, MapIR, MapInput, MapInputFrom, MapKeyDefn, MapKeys, MapKeysOptions, MapOR, MapOutput, MapOutputFrom, MapTo, MapToString, MapValueDefn, MapperApi, MapperOld, Mass, MassMetrics, MassUom, Mastercard, Max$1 as Max, MaxLength, MaxSafeInteger, MaybeRef, Merge, MergeKVs, MergeObjects, MergeScalars, MergeTuples, Metric, MetricCategory, MexicanNewsCompanies, MexicanNewsUrls, MimeTypes, Min$1 as Min, MinLength, MinLengthArray, MinimalDigitDate, MinimalDigitDate__Suffixed, MixObjects, Mod, ModernDoubleLeap, MomentLike, MonthAbbrev, MonthDateDigit, MonthInSeason, MonthName, MonthNumber, MonthNumeric, MultiChoiceCallback, MultipleChoice, Multiply, Mutable, MutableProps, MutablePropsExclusive, NBSP, NamedColor, NamedColorMinimal, NamedColor_Blue, NamedColor_Brown, NamedColor_Cyan, NamedColor_Gray, NamedColor_Green, NamedColor_Orange, NamedColor_Pink, NamedColor_Purple, NamedColor_Red, NamedColor_White, NamedColor_Yellow, NamedDynamicSegment, NamingConvention, Narrow, NarrowContainer, NarrowDictProps, NarrowObject, Narrowable, NarrowableDefined, NarrowableScalar, NarrowingFn, NarrowlyContains, NegDelta, Negative, Nest, NestedSplit, NestedSplitPolicy, NestedString, Nesting, NestingConfig__Named, NestingKeyValue, NestingTuple, NetworkConfig, NetworkDefinition, NetworkProtocol, NetworkProtocolPrefix, NewsUrls, NextDigit, NikeUrl, NoMatch, NodeCallback, NonAlphaChar, NonArray, NonBreakingSpace, NonNumericKeys, NonStringKeys, NonZeroNumericChar, None, NorwegianNewsCompanies, NorwegianNewsUrls, Not, NotEqual, NotFilter, NotLength, NotNull, Nothing, NpmVersion, NumberLike, NumericChar, NumericChar__NonZero, NumericChar__OneToFive, NumericChar__OneToFour, NumericChar__OneToThree, NumericChar__OneToTwo, NumericChar__ZeroToFive, NumericChar__ZeroToFour, NumericChar__ZeroToOne, NumericChar__ZeroToThree, NumericChar__ZeroToTwo, NumericKeys, NumericRange, NumericSign, NumericSort, NumericSortOptions, ObjKeyDefn, ObjectApiCallback, ObjectKey, ObjectKeys, ObjectMap, ObjectMapConversion, ObjectMapper, ObjectMapperCallback, ObjectToApi, ObjectToCssString, ObjectToJsString, ObjectToJsonString, ObjectToKeyframeString, ObjectToString, ObjectValuesAsStringLiteralTemplate, OddNumber, OldSchoolHtmlElement, OnPass, OnPassRemap, OneOf, OneToMany, OneToOne, OneToZero, OnlyFixedKeys, OnlyFn, OnlyFnProps, OnlyIndexKeys, OnlyOptional, OpeningBracket, OpeningMark, OpeningMarkPlus, Opt$1 as Opt, OptCr, OptCrThenIndent, OptDictProps, OptModifier, OptNumber, OptPercent, OptRecord, OptRequired, OptSpace, OptSpace2, OptSpace4, OptUrlQueryParameters, OptWhitespace, OptionalKeys, OptionalKeysTuple, OptionalParamFn, OptionalProps, OptionalSimpleScalarTokens, OptionalSpace, Or, OutputToken, PackageJson, PadEnd, PadStart, ParameterlessFn, ParseDate, ParseInt, ParseTime, ParsedDate, ParsedTime, PascalCase, PascalKeys, Passthrough, PathJoin, PhoneAreaCode, PhoneCountryCode, PhoneCountryLookup, PhoneFormat, PhoneNumber, PhoneNumberDelimiter, PhoneNumberType, PhoneNumberWithCountryCode, PhoneShortCode, Pluralize, PlusMinus, Pop, PortMapping, PortSpecifierOptions, Power, PowerMetrics, PowerUom, Precision, Prepend, PrependAll, Pressure, PressureMetrics, PressureUom, PriorDigit, PrivateKey, PrivateKeyOf, PrivateKeys, PromiseAll, Promised, Promisify, PropertyChar, ProtocolOptions, ProxyErr, PublicKeyOf, PublicKeys, Punctuation, Push, QuotationMark, QuotationMarkPlus, QuoteCharacter, QuoteNesting, RawPhoneNumber, ReadonlyKeys, ReadonlyProps, RecKeyVariant, RecVariant, RecordKeyDefn, RecordKeyWideTokens, RecordValueTypeDefn, ReduceValues, RegexArray, RegexExecFn, RegexGroupValue, RegexHandlingStrategy, RegexTestFn, RegularExpression, RegularFn, RelativeUrl, RemoveEmpty, RemoveFnProps, RemoveFromEnd, RemoveFromStart, RemoveHttpProtocol, RemoveIndex, RemoveIndexKeys, RemoveMarked, RemoveNetworkProtocol, RemoveNever, RemovePhoneCountryCode, RemoveUndefined, RemoveUrlPort, RemoveUrlSource, RemoveWhitespace, RenameKey, RenderTime, Repeat, Replace, ReplaceAll, ReplaceAllFromTo, ReplaceAllToFrom, ReplaceBooleanInterpolation, ReplaceFromTo, ReplaceLast, ReplaceNumericInterpolation, ReplaceStringInterpolation, ReplaceType, RepoPageType, RepoSource, RepoUrls, RequireProps, RequiredKeys, RequiredKeysTuple, RequiredProps, RequiredSimpleScalarTokens, Resistance, ResistanceMetrics, ResistanceUom, ResolvedTokenType, RestEndpoint, RestMethod, RetailUrl, RetainAfter, RetainAfterLast, RetainBetween, RetainChars, RetainLiterals, RetainUntil, RetainUntil__Nested, RetainWhile, RetainWideTypes, ReturnTypes, ReturnValues, Returns, ReturnsBoolean, ReturnsFalse, ReturnsTrue, Reverse, ReverseLookup, Rfc1812, Rfc1812Like, RgbColor, RgbaColor, Right$1 as Right, RightContains, RightDoubleMark, RightEquals, RightExtends, RightHeavyDoubleTurned, RightHeavySingleTurned, RightIncludes, RightReversedDoublePrime, RightSingleMark, RightWhitespace, RuntimeSetType, RuntimeSetType__Intersection, RuntimeSetType__Union, RuntimeTakeFunction, RuntimeType, RuntimeType__Atomic, RuntimeType__Function, RuntimeType__Generator, RuntimeType__Kv, RuntimeType__Literal, RuntimeType__Set, RuntimeUnion, SKeys, SafeDecode, SafeDecodingConversion, SafeDecodingKey__Brackets, SafeDecodingKey__Quotes, SafeDecodingKey__Whitespace, SafeEncode, SafeEncodeEscaped, SafeEncodingConversion, SafeEncodingGroup, SafeEncodingKey__Brackets, SafeEncodingKey__Quotes, SafeEncodingKey__Whitespace, SafeString, SafeStringSymbol, Scalar, ScalarCallback, ScalarNotSymbol, Season, Second$1 as Second, SecondOfEach, SecretDefinition, SemanticDependency, SemanticVersion, SerializedData, Set$1 as Set, SetCandidate, SetIndex, SetKey, SetKeyForce, SetKeyStrict, SetKeysTo, SetToString, Shape, ShapeApi, ShapeApi__Scalars, ShapeCallback, ShapeSuggest, ShapeTupleOrUnion, SharedKeys, Shift, ShiftDecimalPlace, Shortest, SimpleArrayToken, SimpleContainerToken, SimpleDictToken, SimpleMapToken, SimpleScalarToken, SimpleSetToken, SimpleToken, SimpleType, SimpleTypeArray, SimpleTypeDict, SimpleTypeMap, SimpleTypeScalar, SimpleTypeSet, SimpleTypeUnion, SimpleUnionToken, SimplifyObject, SingleQuote, SingularNoun, SingularNounEnding, SizingUnits, Slice, SliceArray, SliceString, SmartMark, SmartMarkPlus, SnakeCase, SnakeKeys, SocialMediaPlatform, SocialMediaProfileUrl, SocialMediaUrl, Solo, Some, SomeEqual, SomeExtend, Something, Sort, SortByKey, SortByKeyOptions, SortOptions, SortOrder, SouthKoreanNewsCompanies, SouthKoreanNewsUrls, SpanishNewsCompanies, SpanishNewsUrls, SpecialChar, Speed, SpeedMetrics, SpeedUom, Split, Split2, SplitAtVariadic, SplitOnWhitespace, StackFrame, StackTrace, StandardMark, StartsWith, StartsWithNumber, StartsWithTemplateLiteral, StaticFn, StaticTemplateSections, StaticToken, StaticTokenApi, StrLen, StringDelimiter, StringEncoder, StringIsAfter, StringKeys, StringLength, StringLiteralFromTuple, StringLiteralTemplate, StringLiteralToken, StringLiteralType, StringSort, StringSortOptions, StringTokenUtilities, StripAfter, StripAfterLast, StripBefore, StripChars, StripFirst, StripLeading, StripLeadingStringTemplate, StripLeadingTemplate, StripLeftNonAlpha, StripSlash, StripSurround, StripSurrounding, StripSurroundingStringTemplate, StripTrailing, StripTrailingStringTemplate, StripUntil, StripWhile, StrongMap, StrongMapTransformer, StrongMapTypes, StructuredStringType, Subtract, Success$1 as Success, Suggest, SuggestHexadecimal, SuggestIp6SubnetMask, SuggestIpAddress, Sum$1 as Sum, Surround, SwissNewsCompanies, SwissNewsUrls, SymbolKind, SyncFunction, Synchronous, TLD, TSV, TT_Atomic, TT_Container, TT_Function, TT_Set, TT_Singleton, TakeDate, TakeFirst, TakeFunction, TakeHours, TakeLast, TakeMilliseconds, TakeMinutes, TakeMonth, TakeNestedString, TakeNumeric, TakeNumericOptions, TakeParser, TakeProp, TakeSeconds, TakeStart, TakeStartCallback, TakeStartFn, TakeStartMatches, TakeStartMatchesKind, TakeStartMatches__Callback, TakeStartMatches__Default, TakeStartMatches__Mapper, TakeState, TakeTimezone, TakeUtility, TakeWrapper, TakeYear, TargetUrl, Temperature, TemperatureMetrics, TemperatureUom, TemplateBlock__BARE, TemplateBlocks, TemplateMap, TemplateMap__Basic, TemplateMap__Generics, TemplateParams, TemporalInstanceLike, TemporalLike, TemporalPlainDateTimeLike, TemporalTimeZoneLike, TemporalZonedDateTimeLike, Test, Thenable, ThreeDigitMillisecond, TimeMetric, TimeMetrics, TimeUom, TimeZoneExplicit, TimezoneOffset, ToBoolean, ToCSV, ToChoices, ToCsv, ToFn, ToInteger, ToIntegerOp, ToJson, ToJsonArray, ToJsonObject, ToJsonOptions, ToJsonScalar, ToJsonValue, ToKv, ToKvOptions, ToLiteralOptions, ToNumber, ToNumericArray, ToPhoneFormat, ToString, ToStringArray, ToStringLiteral, ToStringLiteral__Array, ToStringLiteral__Object, ToStringLiteral__Scalar, ToStringLiteral__Union, ToUnion, Token$1 as Token, TokenIsStatic, TokenMapper, TokenName, TokenParamsConstraint, TokenResolver, TokenSyntax, TokenType, TokenizeStringLiteral, Tokenizer, Trim, TrimCharEnd, TrimDictionary, TrimEach, TrimEnd, TrimLeft, TrimRight, TrimStart, Truncate, TruncateAtLen, TruthyReturns, Tuple$1 as Tuple, TupleDefn, TupleMeta, TupleRange, TupleToIntersection, TupleToUnion, TurkishNewsCompanies, TurkishNewsUrls, TwChroma, TwChroma100, TwChroma200, TwChroma300, TwChroma400, TwChroma50, TwChroma500, TwChroma600, TwChroma700, TwChroma800, TwChroma900, TwChroma950, TwChromaLookup, TwColor, TwColorOptionalOpacity, TwColorTarget, TwColorWithLuminosity, TwColorWithLuminosityOpacity, TwHue, TwLumi100, TwLumi200, TwLumi300, TwLumi400, TwLumi50, TwLumi500, TwLumi600, TwLumi700, TwLumi800, TwLumi900, TwLumi950, TwLuminosity, TwLuminosityLookup, TwModifier, TwModifier__Core, TwModifier__Order, TwModifier__Reln, TwModifier__Size, TwModifiers, TwNeutralColor, TwSizeResponsive, TwStaticColor, TwTarget__Color, TwTarget__ColorLuminosity, TwTarget__ColorLuminosityWithOpacity, TwTarget__ColorName, TwTarget__ColorWithOptPrefixes, TwTarget__Color__Light, TwVibrantColor, TwoDigitDate, TwoDigitHour, TwoDigitMinute, TwoDigitMonth, TwoDigitSecond, Type$1 as Type, TypeDefaultValue, TypeDefinition, TypeDefn, TypeDefnValidations, TypeError, TypeGuard, TypeHasDefaultValue, TypeHasUnderlying, TypeHasValidations, TypeIsRequired, TypeKind, TypeKindContainer, TypeKindContainerNarrow, TypeKindContainerWide, TypeKindFalsy, TypeKindLiteral, TypeKindWide, TypeOf, TypeOfArray, TypeOfExtended, TypeOptions, TypeReplace, TypeRequired, TypeStrength, TypeSubtype, TypeToken, TypeTokenAtomics, TypeTokenContainers, TypeTokenDelimiter, TypeTokenFunctions, TypeTokenKind, TypeTokenLookup, TypeTokenSets, TypeTokenSingletons, TypeTokenStart, TypeTokenStop, TypeToken__Boolean, TypeToken__False, TypeToken__Fn, TypeToken__FnSet, TypeToken__Gen, TypeToken__Never, TypeToken__Null, TypeToken__Number, TypeToken__NumberSet, TypeToken__Rec, TypeToken__String, TypeToken__StringSet, TypeToken__True, TypeToken__Undefined, TypeToken__UnionSet, TypeToken__Unknown, TypeTuple, TypeUnderlying, TypedError, TypedFunction, TypedFunctionWithDictionary, TypedParameter, UUID, UUID_Urn, UkNewsCompanies, UkNewsUrls, Unbrand, UnbrandValues, UnderlyingType, UnionArrayToTuple, UnionElDefn, UnionFilter, UnionFrom, UnionFromProp, UnionHasArray, UnionMemberEquals, UnionMemberExtends, UnionMutate, UnionMutationOp, UnionToIntersection, UnionToString, UnionToTuple, UnionWithAll, Unique, UniqueKeys, UniqueKeysUnion, UniqueKv, Unset, UntilLast, UntilLastOptions, Uom, UpdateTake, UpperAlphaChar, UpsertKeyValue, Uri, UrlBuilder, UrlOptions, UrlPath, UrlPathChars, UrlPort, UrlQueryParameters, UrlsFrom, UsNewsCompanies, UsNewsUrls, UsPhoneNumber, UsStateAbbrev, UsStateName, ValidKey, Validate, ValidateCharacterSet, ValidateLength, ValidateLengthOptions, ValidateMax, ValidateMin, ValidationFunction, ValueAtDotPath, ValueCallback, ValueOrReturnValue, Values, Variable, VariableChar, VariadicParameterModifiers, VariadicType, Visa, VisaMastercard, Voltage, VoltageMetrics, VoltageUom, Volume, VolumeDefinition, VolumeMapping, VolumeMetrics, VolumeUom, VueComputedRef, VueRef, WalgreensUrl, WalmartUrl, WayFairUrl, WeakMapKeyDefn, WeakMapToString, WeakMapValueDefn, When, WhenErr, WhenNever, WhereLeft, Whitespace, WholeFoodsUrl, WideContainerNames, WideScalarModifiers, WideTokenNames, WideTypeName, Widen, WidenContainer, WidenFn, WidenFunction, WidenLiteral, WidenScalar, WidenTuple, WidenUnion, WidenValues, WithDefault, WithKeys, WithNumericKeys, WithStringKeys, WithTemplateKeys, WithValue, WithoutKeys, WithoutValue, WrapperFn, Xor, YouTubeCreatorUrl, YouTubeEmbedUrl, YouTubeFeedType, YouTubeFeedUrl, YouTubeHistoryUrl, YouTubeHome, YouTubeLikedPlaylistUrl, YouTubePageType, YouTubePlaylistUrl, YouTubeShareUrl, YouTubeSubscriptionsUrl, YouTubeUrl, YouTubeUsersPlaylistUrl, YouTubeVideoUrl, YouTubeVideosInPlaylist, ZaraUrl, Zero, ZeroToMany, ZeroToOne, ZeroToZero, Zip5, ZipCode, ZipPlus4, ZipToState, _TrimDict };
28690
+ export { Abs, AbsMaybe, Acceleration, AccelerationMetrics, AccelerationUom, Add, AddIfUnique, AddKeyValue, AddPositive, AddUrlPathSegment, AfterFirst, AfterFirstChar, AfterLast, AllCaps, AllExtend, AllLengthOf, AllLiteral, AllNumericLiterals, AllOptionalElements, AllStringLiterals, AlphaChar, AlphanumericChar, AmazonUrl, AmericanExpress, And, AnyArray, AnyFunction, AnyMap, AnyObject, AnyQueryParams, AnySet, AnyWeakMap, Api, ApiCallback, ApiConfig, ApiEscape, ApiHandler, ApiOptions, ApiReturn, ApiState, ApiStateInitializer, ApiSurface, Append, AppendRight, AppleUrl, ApplyTemplate, AreIncompatible, AreSameLength, AreSameType, Area, AreaMetrics, AreaUom, ArgUnion, AriaDocStructureRoles, AriaLandmarkRoles, AriaLiveRegionRoles, AriaRole, AriaWidgetRoles, AriaWindowRoles, ArrayElementType, ArrayTo, ArrayToString, ArrayTypeDefn, As, AsApi, AsArray, AsBoolean, AsChoice, AsContainer, AsDateMeta, AsDefined, AsDictionary, AsDoneFn, AsEscapeFunction, AsFinalizedConfig, AsFnMeta, AsFourDigitYear, AsFromTo, AsFunction, AsHtmlComponentTag, AsHtmlTag, AsIndexOf, AsInputToken, AsLeft, AsLeftRight, AsLiteralTemplate, AsNarrowingFn, AsNegativeNumber, AsNonNull, AsNumber, AsNumberWhenPossible, AsNumericArray, AsObject, AsObjectKey, AsObjectKeys, AsOptionalParamFn, AsOutputToken, AsPropertyKey, AsRecord, AsRef, AsRelativeDate, AsRight, AsSimpleType, AsSomething, AsStaticFn, AsStaticTemplate, AsString, AsStringUnion, AsTakeState, AsTemplateType, AsTemplateTypes, AsTuple, AsTwoDigitMonth, AsTypeSubtype, AsUnion, AsUnionToken, AsVueComputedRef, AssertAssertionError, AssertContains, AssertEqual, AssertEquals, AssertError, AssertExtends, AssertFalse, AssertNotEqual, AssertSameValues, AssertTrue, AssertValidation, AssertionError, AssertionMapper, AssertionOp, AsyncFunction, Asynchronous, AustralianNewsCompanies, AustralianNewsUrls, AvailableConverters, Awaited$1 as Awaited, BCP47, BackTick, BareCssSelector, BaseRuntimeType, BaseType, BaseTypeToken, BeforeLast, BelgianNewsCompanies, BelgianNewsUrls, BespokeLiteral, BespokeUnion, BestBuyUrl, BooleanLike, BooleanSort, BooleanSortOptions, Box, Bracket, BracketAndQuoteNesting, BracketNesting, Brand, BrandSymbol, Break$1 as Break, BuildDefinition, CSV, Callback$1 as Callback, CamelCase, CamelKeys, CanadianNewsCompanies, CanadianNewsUrls, CapFirstAlpha, CapitalizeEachUnionMember, CapitalizeWords, Cardinality$1 as Cardinality, Cardinality0, Cardinality1, CardinalityExplicit, CardinalityFilter0, CardinalityFilter1, CardinalityIn, CardinalityInput, CardinalityNode, CardinalityOut, CargoDependency, CargoToml, CharCount, Chars, ChewyUrl, ChineseNewsCompanies, ChineseNewsUrls, Choice, ChoiceApi, ChoiceApiConfig, ChoiceApiOptions, ChoiceBuilder, ChoiceCallback, ChoiceValue, ClosingBracket, ClosingMark, ClosingMarkPlus, CodePointOf, ColorFnOptOpacity, ColorFnValue, ColorParam, CombinedKeys, CommonHtmlElement, Comparator, Compare, CompareNumbers, ComparisonAccept, ComparisonDesc, ComparisonFn, ComparisonLookup, ComparisonMode, ComparisonOpConfig, ComparisonOperation, ComparisonParamConvert, ComparisonParamConvert__List, ComparisonParamConvert__Unit, Concat, ConfigDefinition, ConfiguredMap, Consonant, Consonants, ConstrainObject, ConstrainedObjectCallback, ConstrainedObjectIdentity, Constructor, Container, ContainerBlockKey, ContainerKeyGuarantee, Contains, ContainsAll, ContainsSome, Continent, Conversion, ConvertTypeOf, ConvertWideTokenNames, ConverterCoverage, ConverterDefn, CostCoUrl, CostcoUrl, Count$1 as Count, CountryPhoneNumber, Cr, CrThenIndent, CreateChoice, CreateDictHash, CreateDictShape, CreateKV, CreateLookup, CreditCard, CssAbsolutionPositioningProperties, CssAlignContent, CssAlignItems, CssAlignProperties, CssAlignSelf, CssAnimation, CssAnimationComposition, CssAnimationDelay, CssAnimationDirection, CssAnimationDuration, CssAnimationFillMode, CssAnimationIterationCount, CssAnimationPlayState, CssAnimationProperties, CssAnimationTimingFunction, CssAppearance, CssAspectRatio, CssBackdropFilter, CssBackgroundProperties, CssBorderCollapse, CssBorderImageRepeat, CssBorderImageSource, CssBorderInlineSizing, CssBorderProperties, CssBorderStyle, CssBorderWidth, CssBoxAlign, CssBoxDecorationBreak, CssBoxProperties, CssBoxShadow, CssBoxSizing, CssBreak, CssBreakInside, CssBreakProperties, CssCalc, CssClamp, CssClassSelector, CssColor, CssColorFn, CssColorLight, CssColorMix, CssColorMixLight, CssColorModel, CssColorSpace, CssColorSpacePrimary, CssContent, CssCursor, CssDefinition, CssDisplay, CssDisplayStatePseudoClasses, CssFlex, CssFlexBasis, CssFlexDirection, CssFlexFlow, CssFlexGrow, CssFlexShrink, CssFloat, CssFontFamily, CssFontFeatureSetting, CssFontKerning, CssFontLanguageOverride, CssFontPalette, CssFontProperties, CssFontStyle, CssFontSynthesis, CssFontWeight, CssFontWidth, CssFunctionalPseudoClass, CssGap, CssGlobal, CssHangingPunctuation, CssHexColor, CssHsb, CssHsl, CssIdSelector, CssImageOrientation, CssImageRendering, CssImageResolution, CssInputPseudoClasses, CssJustifyContent, CssJustifyItems, CssJustifyProperties, CssJustifySelf, CssKeyframeTimestamp, CssKeyframeTimestampSuggest, CssLetterSpacing, CssLinguisticPseudoClasses, CssListStyle, CssLocationPseudoClasses, CssMargin, CssMarginBlock, CssMarginBlockEnd, CssMarginBlockStart, CssMarginBottom, CssMarginInline, CssMarginInlineEnd, CssMarginInlineStart, CssMarginLeft, CssMarginProperties, CssMarginRight, CssMarginTop, CssMixBlendMode, CssNamedColors, CssNamedSizes, CssObjectFit, CssObjectPosition, CssOffsetDistance, CssOffsetPath, CssOffsetPosition, CssOffsetProperties, CssOkLch, CssOpacity, CssOutline, CssOutlineColor, CssOutlineOffset, CssOutlineProperties, CssOutlineStyle, CssOutlineWidth, CssOverflowAnchor, CssOverflowBlock, CssOverflowClipMargin, CssOverflowInline, CssOverflowProperties, CssOverflowX, CssOverflowY, CssPadding, CssPaddingBlock, CssPaddingBlockEnd, CssPaddingBlockStart, CssPaddingBottom, CssPaddingInline, CssPaddingInlineEnd, CssPaddingInlineStart, CssPaddingLeft, CssPaddingProperties, CssPaddingRight, CssPaddingTop, CssPerspectiveOrigin, CssPlaceContent, CssPlaceItems, CssPlaceProperties, CssPlaceSelf, CssPointerEvent, CssPosition, CssProperty, CssPseudoClass, CssPseudoClassDefn, CssResourceStatePseudoClasses, CssRgb, CssRgba, CssRotation, CssRound, CssSelector, CssSizing, CssSizingFunction, CssSizingLight, CssStroke, CssStrokeDasharray, CssStrokeProperties, CssTagSelector, CssTextAlign, CssTextDecorationLine, CssTextDecorationStyle, CssTextIndent, CssTextJustify, CssTextOrientation, CssTextOverflow, CssTextPosition, CssTextProperties, CssTextRendering, CssTextTransform, CssTextWrap, CssTextWrapMode, CssTextWrapStyle, CssTimePseudoClasses, CssTiming, CssTransform, CssTransformBox, CssTransformOrigin, CssTransformProperties, CssTransformStyle, CssTranslate, CssTranslateFn, CssTreePseudoClasses, CssUserActionPseudoClasses, CssVar, CssVarWithFallback, CssWhiteSpace, CssWhiteSpaceCollapse, CssWordBreak, CssWritingMode, Csv, CsvToJsonTuple, CsvToStrUnion, CsvToTuple, CsvToTupleStr, CsvToUnion, Current, CurrentMetrics, CurrentUom, CvsUrl, DEFAULT_MANY_TO_ONE_MAPPING, DEFAULT_ONE_TO_MANY_MAPPING, DEFAULT_ONE_TO_ONE_MAPPING, DanishNewsCompanies, DanishNewsUrls, DashToSnake, DashUppercase, DateLike, DateMeta, DatePlus, DateSeparator, DateSource, DateType, DayJsLike, DaysInMonth, DecomposeMapConfig, Decrement, DefaultManyToOneMapping, DefaultNesting, DefaultOneToManyMapping, DefaultOneToOneMapping, DefaultOptions, DefaultTemplateBlocks, DefineModifiers, DefineObject, DefineObjectApi, DefineObjectWith, DefineStatelessApi, DefineTokenDetail, DefineTuple, Defined, DellUrl, Delta$1 as Delta, DeltaLight, DeployConfig, DialCountryCode, Dict$1 as Dict, DictChangeValue, Dictionary, DictionaryTypeDefn, Digit, DigitNonZero, Digital, DigitalLiteral, Digitize, DinersClub, Discover, Distance, DistanceMetrics, DistanceUom, DistinguishEmpty, Divide, DnsName, DockerCompose, DockerDependsOn, DockerService, DoesExtend, DoesNotExtend, DomainName, DoneFnTuple, DotPathFor, DoubleQuote, DropChars, DropLeading, DropTrailing, DropVariadic, DropVariadicHead, DropVariadicTail, DutchNewsCompanies, DutchNewsUrls, DynamicSegment, DynamicToken, DynamicTokenApi, Each, EachAsString, EachAsStringLiteralTemplate, EachOperation, EbayUrl, ElementOf, Email, Empty, EmptyObject, EmptyString, EncodingDefinition, EndsWith, EndsWithNumber, Energy, EnergyMetrics, EnergyUom, EnsureKeys, EnsureLeading, EnsureLeadingEvery, EnsureSurround, EnsureTrailing, EpochInMs, EpochInSeconds, Equals, Err, ErrContext, ErrMsg, ErrType, EscapeFunction, EscapeRegex, EscapedSafeEncodingConversion, EsotericHtmlElement, EtsyUrl, Even, EvenNumber, Every, EveryLength, ExcludeIndex, Exif, ExifAttributionInfo, ExifCameraInfo, ExifCompression, ExifContrast, ExifDateTimeInfo, ExifEmbedPolicy, ExifExtraneous, ExifFlashValues, ExifGainControl, ExifGps, ExifLightSource, ExifPhotoContext, ExifPreviewColorSpace, ExifSaturation, ExifSceneCaptureType, ExifSharpness, ExifSubjectDistance, Expand, ExpandDictionary, ExpandRecursively, ExpandTuple, ExpandUnion, Expect, ExplicitFunction, ExplicitlyEmptyObject, Extends, ExtendsAll, ExtendsEvery, ExtendsNone, ExtendsSome, ExtractCaptureGroups, ExtractOptionalElements, ExtractOptionalKeys, ExtractRequiredElements, Fail$1 as Fail, FailFast, FailFastOptions, Fallback, FalsyValue, FifoQueue, FillStringHole, Filter, FilterByNestingLevel, FilterFn, FinalizedMapConfig, Find, FindFunction, FindMaxLength, First$1 as First, FirstChar, FirstDefined, FirstKey, FirstOfEach, FirstSet, FirstString, FirstValue, FixedLengthArray, Flatten, FlattenUnion, FluentApi, FluentFn, FluentState, FnAllowingProps, FnArgsDefn, FnDefn, FnFrom, FnKeyValue, FnMeta, FnMetaShape, FnPropertiesDefn, FnReturn, FnReturnTypeDefn, FnWithDescription, FnWithProps, FourDigitYear, FrenchNewsCompanies, FrenchNewsUrls, Frequency, FrequencyMetrics, FrequencyUom, FromCsv, FromDefineObject, FromDefineTuple, FromDefn, FromDynamicSegment, FromInputToken, FromInputToken__Object, FromInputToken__String, FromInputToken__Tuple, FromKv, FromLiteralTemplate, FromLiteralTokens, FromMaybeRef, FromNamedDynamicSegment, FromNamedNestingConfig, FromNesting, FromRecordKeyDefn, FromShapeCallback, FromSimpleRecordKey, FromSimpleToken, FromTo, FromTypeDefn, FromWideTokens, FullWidthQuotation, FullyQualifiedUrl, GenericParam, GermanNewsCompanies, GermanNewsUrls, Get, GetBrand, GetComparator, GetComparisonParams, GetDefaultPort, GetEach, GetEscapeFunction, GetFixedKeys, GetIndexKeys, GetInputToken, GetMonthAbbrev, GetMonthName, GetMonthNumber, GetNestingEnd, GetNonVariadicLength, GetOpConfig, GetOptionalElementCount, GetPhoneCountryCode, GetPhoneNumberType, GetQueryParameterDynamics, GetRequiredElementCount, GetSeason, GetTemplateBlocks, GetTemplateParams, GetTokenNames, GetTypeOf, GetUrlDynamics, GetUrlPath, GetUrlPathDynamics, GetUrlPort, GetUrlProtocol, GetUrlProtocolPrefix, GetUrlQueryParams, GetUrlSource, GetYear, GetYouTubePageType, GitRef, GithubActionsUrl, GithubInsightPageType, GithubInsightUrl, GithubOrgUrl, GithubRepoBranchesUrl, GithubRepoDiscussionUrl, GithubRepoDiscussionsUrl, GithubRepoIssueUrl, GithubRepoIssuesListUrl, GithubRepoProjectUrl, GithubRepoProjectsUrl, GithubRepoPullRequestUrl, GithubRepoPullRequestsUrl, GithubRepoReleaseTagUrl, GithubRepoReleasesUrl, GithubRepoTagsUrl, GithubRepoUrl, GithubUrl, Grammar, GrammarTypeDefinition, HandMUrl, Handle, HandleDoneFn, HasAny, HasArray, HasCharacters, HasErrors, HasEscapeFunction, HasEvery, HasFalse, HasFunctionKeys, HasIndex, HasIndexKeys, HasIndexSignature, HasIpAddress, HasModifier, HasNetworkProtocolReference, HasNever, HasNoParameters, HasNonTemplateLiteral, HasOneParameter, HasOptionalElements, HasOptionalElements__Tuple, HasOtherCharacters, HasParameters, HasPhoneCountryCode, HasProp, HasQueryParameter, HasRequiredElements, HasRequiredProps, HasSameKeys, HasSameValues, HasTemplateLiteral, HasTrue, HasTypedFunctionKeys, HasUnionType, HasUppercase, HasUrlPath, HasUrlSource, HasVariadicHead, HasVariadicInterior, HasVariadicParameters, HasVariadicTail, HasWideBoolean, HasWideValues, HaveSameNumericSign, Healthcheck, Hemisphere, HexColor, Hexadecimal, HexadecimalChar, HomeDepotUrl, HtmlBodyElement, HtmlElement, HtmlFrameworkElement, HtmlFunctionalElement, HtmlHeaderElement, HtmlInputElement, HtmlListElement, HtmlMediaElement, HtmlStructuralElement, HtmlSymantecElement, HtmlTableElement, HtmlTag, HtmlTagAtomic, HtmlTagClose, HtmlTagOpen, Html__AtomicTag, Html__BlockTag, HttpHeader, HttpHeaders, HttpHeadingKeys, HttpVerb, HttpVerbsWithBody, HttpVerbsWithoutBody, IP6Multicast, IP6Unicast, IT_AtomicToken, IT_BooleanLiteralToken, IT_Combinators, IT_Failure, IT_Generics, IT_KvType, IT_NumericLiteralToken, IT_Parameter, IT_ParameterResults, IT_StringLiteralToken, IT_TakeArray, IT_TakeAtomic, IT_TakeFunction, IT_TakeGenerator, IT_TakeGroup, IT_TakeIntersection, IT_TakeKind, IT_TakeKvObjects, IT_TakeLiteralArray, IT_TakeNumericLiteral, IT_TakeObjectLiteral, IT_TakeOutcome, IT_TakeParameters, IT_TakePromise, IT_TakeSet, IT_TakeStringLiteral, IT_TakeTokenGeneric, IT_TakeTokenGenerics, IT_TakeUnion, IT_Token, IT_Token_Array, IT_Token_Atomic, IT_Token_Base, IT_Token_Function, IT_Token_Generator, IT_Token_Group, IT_Token_Intersection, IT_Token_Kv, IT_Token_Literal, IT_Token_Literal_Array, IT_Token_Object_Literal, IT_Token_Promise, IT_Token_Set, IT_Token_Union, IT_TupleToOutputToken, IanaAfrica, IanaAmerica, IanaAntarctica, IanaAsia, IanaEurope, IanaPacific, IanaZone, IanaZoneArea, IdentityFn, IdentityFunction, If, IfAllExtend, IfAllLiteral, IfEqual, IfEquals, IfLeft, IfLength, IfLiteralKind, IfNever, IfUnset, IfUnsetOrUndefined, IkeaUrl, ImgFormat, ImgFormatWeb, Immutable, InBetween, InBetweenOptions, Increment, Indent, Indent2, Indent4, IndentSpaces, IndentTab, IndexOf, Indexable, IndexableObject, IndianNewsCompanies, IndianNewsUrls, InlineSvg, InputToken, InputTokenSuggestions, InputToken__SimpleTokens, Integer, IntegerBrand, InternationalPhoneNumber, IntersectingKeys, Intersection, IntersectionToTuple, IntoTemplate, Inverse, InvertNumericSign, Ip4Address, Ip4AddressLike, Ip4Netmask16, Ip4Netmask24, Ip4Netmask32, Ip4Netmask8, Ip4NetmaskSuggestion, Ip4Octet, Ip4Subnet, Ip4SubnetLike, Ip6Address, Ip6AddressFull, Ip6AddressLike, Ip6Group, Ip6GroupExpansion, Ip6Loopback, Ip6Subnet, Ip6SubnetLike, IsAfter, IsAllCaps, IsAllLowercase, IsAlphanumeric, IsAmericanExpress, IsAny, IsAnyEqual, IsArray, IsAtomicTag, IsBalanced, IsBefore, IsBetweenExclusively, IsBetweenInclusively, IsBoolean, IsBooleanLiteral, IsBranded, IsCapitalized, IsComputedRef, IsContainer, IsCreditCard, IsCssHexadecimal, IsCsv, IsDateLike, IsDayJs, IsDefined, IsDictionary, IsDictionaryDefinition, IsDomainName, IsDotPath, IsDoubleLeap, IsEmpty, IsEmptyArray, IsEmptyContainer, IsEmptyObject, IsEmptyString, IsEpochInMilliseconds, IsEpochInSeconds, IsEqual, IsErrMsg, IsError, IsEscapeFunction, IsFalse, IsFalsy, IsFloat, IsFnWithDictionary, IsFourDigitYear, IsFunction, IsGreaterThan, IsGreaterThanOrEqual, IsHexadecimal, IsHtmlClosingTag, IsInputToken, IsInputTokenSuccess, IsInteger, IsIp4Address, IsIp4Octet, IsIp6Address, IsIp6HexGroup, IsIpAddress, IsIsoDate, IsIsoDateTime, IsIsoFullDate, IsIsoFullDateTime, IsIsoMonthDate, IsIsoTime, IsIsoYear, IsIsoYearMonth, IsIterable, IsJsDate, IsLeapYear, IsLength, IsLessThan, IsLessThanOrEqual, IsLiteral, IsLiteralContainer, IsLiteralFn, IsLiteralKind, IsLiteralLike, IsLiteralLikeArray, IsLiteralLikeObject, IsLiteralLikeTuple, IsLiteralNumber, IsLiteralObject, IsLiteralScalar, IsLiteralString, IsLiteralTuple, IsLiteralUnion, IsLowerAlpha, IsLuxonDateTime, IsMixedUnion, IsMoment, IsNarrower, IsNarrowingFn, IsNegativeNumber, IsNestingConfig, IsNestingEnd, IsNestingKeyValue, IsNestingMatchEnd, IsNestingStart, IsNestingTuple, IsNever, IsNonEmptyContainer, IsNonEmptyObject, IsNonLiteralUnion, IsNotEqual, IsNothing, IsNull, IsNumber, IsNumberLike, IsNumericLiteral, IsObject, IsObjectKeyRequiringQuotes, IsOk, IsOptional, IsPhoneNumber, IsPositiveNumber, IsReadonlyArray, IsReadonlyObject, IsRequired, IsSameContainerType, IsSameDay, IsSameMonth, IsSameMonthYear, IsSameYear, IsScalar, IsSet, IsSingleChar, IsSingleSided, IsSingularNoun, IsStaticFn, IsStaticTemplate, IsStrictEmptyObject, IsStrictPromise, IsString, IsStringLiteral, IsSubstring, IsSymbol, IsTemplateLiteral, IsThenable, IsTrue, IsTruthy, IsTuple, IsTwoDigitDate, IsTwoDigitMonth, IsUndefined, IsUnion, IsUnionArray, IsUniqueSymbol, IsUnitPrimitive, IsUnknown, IsUnset, IsUrl, IsValidDotPath, IsValidIndex, IsVariable, IsVariadicArray, IsVisaMastercard, IsVueRef, IsWhitespace, IsWideArray, IsWideBoolean, IsWideContainer, IsWideNumber, IsWideObject, IsWideScalar, IsWideString, IsWideSymbol, IsWideType, IsWideUnion, IsYouTubePlaylist, IsYouTubeUrl, IsYouTubeVideoUrl, Iso3166Alpha2Lookup, Iso3166Alpha3Lookup, Iso3166CodeLookup, Iso3166CountryLookup, Iso3166_1_Alpha2, Iso3166_1_Alpha3, Iso3166_1_CountryCode, Iso3166_1_CountryName, Iso3166_1_Lookup, Iso3166_1_Token, IsoDate$1 as IsoDate, IsoDate30, IsoDate31, IsoDateTime, IsoFullDate, IsoFullDateTimeLike, IsoModernDoubleLeap, IsoMonthDate, IsoTime, IsoTimeLike, IsoYear, IsoYearMonth, IsolateErrors, IsolatedResults, ItalianNewsCompanies, ItalianNewsUrls, JapaneseNewsCompanies, JapaneseNewsUrls, Jcb, Join, JsDateLike, JsonRxEncodingSpecifier, JsonRxMessageEncoding, JsonRxPayloadEncoding, JsonRxProtocol, JustFunction, KebabCase, KebabKeys, KeyOf, KeyValue, Keys$1 as Keys, KeysEqualValue, KeysNotEqualValue, KeysOverlap, KeysUnion, KeysWithError, KeysWithValue, KeysWithoutValue, KlassMeta, KrogerUrl, KvFn, KvFnDefn, Last$1 as Last, LastChar, LastOfEach, LeadingNonAlpha, Left$1 as Left, LeftContains, LeftDoubleMark, LeftEquals, LeftExtends, LeftHeavyDoubleTurned, LeftHeavySingleTurned, LeftIncludes, LeftLowDoublePrime, LeftReversedDoublePrime, LeftRight, LeftRight__Operations, LeftSingleMark, LeftWhitespace, Length, LessThan, LessThanOrEqual, LexerDelta, LexerState, LifoQueue, LikeRegExp, List, LiteralFnModifiers, LiteralLikeModifiers, LiteralModifiers, LiteralNumberModifiers, LiteralObjectModifiers, LiteralStringModifiers, LocalPhoneNumber, LoggingOptions, Logic, LogicFunction, LogicHandler, LogicOptions, LogicalCombinator, LogicalReturns, Longest, LowerAllCaps, LowerAlphaChar, LowesUrl, Luminosity, LuminosityMetrics, LuminosityUom, LuxonLikeDateTime, LuxonStaticDateTime, MacysUrl, Maestro, MakeKeysOptional, MakeKeysRequired, MakeOptional, MakePropsMutable, MakeRequired, ManyToMany, ManyToOne, ManyToZero, MapCard, MapCardinality, MapCardinalityFrom, MapCardinalityIllustrated, MapConfig, MapCoverage, MapFn, MapFnInput, MapFnOutput, MapIR, MapInput, MapInputFrom, MapKeyDefn, MapKeys, MapKeysOptions, MapOR, MapOutput, MapOutputFrom, MapTo, MapToString, MapValueDefn, MapperApi, MapperOld, Mass, MassMetrics, MassUom, Mastercard, Max$1 as Max, MaxLength, MaxSafeInteger, MaybeRef, Merge, MergeKVs, MergeObjects, MergeScalars, MergeTuples, Metric, MetricCategory, MexicanNewsCompanies, MexicanNewsUrls, MimeTypes, Min$1 as Min, MinLength, MinLengthArray, MinimalDigitDate, MinimalDigitDate__Suffixed, MixObjects, Mod, ModernDoubleLeap, MomentLike, MonthAbbrev, MonthDateDigit, MonthInSeason, MonthName, MonthNumber, MonthNumeric, MultiChoiceCallback, MultipleChoice, Multiply, Mutable, MutableProps, MutablePropsExclusive, NBSP, NamedColor, NamedColorMinimal, NamedColor_Blue, NamedColor_Brown, NamedColor_Cyan, NamedColor_Gray, NamedColor_Green, NamedColor_Orange, NamedColor_Pink, NamedColor_Purple, NamedColor_Red, NamedColor_White, NamedColor_Yellow, NamedDynamicSegment, NamingConvention, Narrow, NarrowContainer, NarrowDictProps, NarrowObject, Narrowable, NarrowableDefined, NarrowableScalar, NarrowingFn, NarrowlyContains, NegDelta, Negative, Nest, NestedSplit, NestedSplitPolicy, NestedString, Nesting, NestingConfig__Named, NestingKeyValue, NestingTuple, NetworkConfig, NetworkDefinition, NetworkProtocol, NetworkProtocolPrefix, NewsUrls, NextDigit, NikeUrl, NoMatch, NodeCallback, NonAlphaChar, NonArray, NonBreakingSpace, NonNumericKeys, NonStringKeys, NonZeroNumericChar, None, NorwegianNewsCompanies, NorwegianNewsUrls, Not, NotEqual, NotFilter, NotLength, NotNull, Nothing, NpmVersion, NumberLike, NumericChar, NumericChar__NonZero, NumericChar__OneToFive, NumericChar__OneToFour, NumericChar__OneToThree, NumericChar__OneToTwo, NumericChar__ZeroToFive, NumericChar__ZeroToFour, NumericChar__ZeroToOne, NumericChar__ZeroToThree, NumericChar__ZeroToTwo, NumericKeys, NumericRange, NumericSign, NumericSort, NumericSortOptions, ObjKeyDefn, ObjectApiCallback, ObjectKey, ObjectKeys, ObjectMap, ObjectMapConversion, ObjectMapper, ObjectMapperCallback, ObjectToApi, ObjectToCssString, ObjectToJsString, ObjectToJsonString, ObjectToKeyframeString, ObjectToString, ObjectValuesAsStringLiteralTemplate, OddNumber, OldSchoolHtmlElement, OnPass, OnPassRemap, OneOf, OneToMany, OneToOne, OneToZero, OnlyFixedKeys, OnlyFn, OnlyFnProps, OnlyIndexKeys, OnlyOptional, OpeningBracket, OpeningMark, OpeningMarkPlus, Opt$1 as Opt, OptCr, OptCrThenIndent, OptDictProps, OptModifier, OptNumber, OptPercent, OptRecord, OptRequired, OptSpace, OptSpace2, OptSpace4, OptUrlQueryParameters, OptWhitespace, OptionalKeys, OptionalKeysTuple, OptionalParamFn, OptionalProps, OptionalSimpleScalarTokens, OptionalSpace, Or, OutputToken, PackageJson, PadEnd, PadStart, ParameterlessFn, ParseDate, ParseInt, ParseTime, ParsedDate, ParsedTime, PascalCase, PascalKeys, Passthrough, PathJoin, PhoneAreaCode, PhoneCountryCode, PhoneCountryLookup, PhoneFormat, PhoneNumber, PhoneNumberDelimiter, PhoneNumberType, PhoneNumberWithCountryCode, PhoneShortCode, Pluralize, PlusMinus, Pop, PortMapping, PortSpecifierOptions, Power, PowerMetrics, PowerUom, Precision, Prepend, PrependAll, Pressure, PressureMetrics, PressureUom, PriorDigit, PrivateKey, PrivateKeyOf, PrivateKeys, PromiseAll, Promised, Promisify, PropertyChar, ProtocolOptions, ProxyErr, PublicKeyOf, PublicKeys, Punctuation, Push, QuotationMark, QuotationMarkPlus, QuoteCharacter, QuoteNesting, RawPhoneNumber, ReadonlyKeys, ReadonlyProps, RecKeyVariant, RecVariant, RecordKeyDefn, RecordKeyWideTokens, RecordValueTypeDefn, ReduceValues, RegexArray, RegexExecFn, RegexGroupValue, RegexHandlingStrategy, RegexTestFn, RegularExpression, RegularFn, RelativeUrl, RemoveEmpty, RemoveFnProps, RemoveFromEnd, RemoveFromStart, RemoveHttpProtocol, RemoveIndex, RemoveIndexKeys, RemoveMarked, RemoveNetworkProtocol, RemoveNever, RemovePhoneCountryCode, RemoveUndefined, RemoveUrlPort, RemoveUrlSource, RemoveWhitespace, RenameKey, RenderTime, Repeat, Replace, ReplaceAll, ReplaceAllFromTo, ReplaceAllToFrom, ReplaceBooleanInterpolation, ReplaceFromTo, ReplaceLast, ReplaceNumericInterpolation, ReplaceStringInterpolation, ReplaceType, RepoPageType, RepoSource, RepoUrls, RequireProps, RequiredKeys, RequiredKeysTuple, RequiredProps, RequiredSimpleScalarTokens, Resistance, ResistanceMetrics, ResistanceUom, ResolvedTokenType, RestEndpoint, RestMethod, RetailUrl, RetainAfter, RetainAfterLast, RetainBetween, RetainChars, RetainLiterals, RetainUntil, RetainUntil__Nested, RetainWhile, RetainWideTypes, ReturnTypes, ReturnValues, Returns, ReturnsBoolean, ReturnsFalse, ReturnsTrue, Reverse, ReverseLookup, Rfc1812, Rfc1812Like, RgbColor, RgbaColor, Right$1 as Right, RightContains, RightDoubleMark, RightEquals, RightExtends, RightHeavyDoubleTurned, RightHeavySingleTurned, RightIncludes, RightReversedDoublePrime, RightSingleMark, RightWhitespace, RuntimeSetType, RuntimeSetType__Intersection, RuntimeSetType__Union, RuntimeTakeFunction, RuntimeType, RuntimeType__Atomic, RuntimeType__Function, RuntimeType__Generator, RuntimeType__Kv, RuntimeType__Literal, RuntimeType__Set, RuntimeUnion, SKeys, SafeDecode, SafeDecodingConversion, SafeDecodingKey__Brackets, SafeDecodingKey__Quotes, SafeDecodingKey__Whitespace, SafeEncode, SafeEncodeEscaped, SafeEncodingConversion, SafeEncodingGroup, SafeEncodingKey__Brackets, SafeEncodingKey__Quotes, SafeEncodingKey__Whitespace, SafeString, SafeStringSymbol, Scalar, ScalarCallback, ScalarNotSymbol, Season, Second$1 as Second, SecondOfEach, SecretDefinition, SemanticDependency, SemanticVersion, SerializedData, Set$1 as Set, SetCandidate, SetIndex, SetKey, SetKeyForce, SetKeyStrict, SetKeysTo, SetToString, Shape, ShapeApi, ShapeApi__Scalars, ShapeCallback, ShapeSuggest, ShapeTupleOrUnion, SharedKeys, Shift, ShiftDecimalPlace, Shortest, SimpleArrayToken, SimpleContainerToken, SimpleDictToken, SimpleMapToken, SimpleScalarToken, SimpleSetToken, SimpleToken, SimpleType, SimpleTypeArray, SimpleTypeDict, SimpleTypeMap, SimpleTypeScalar, SimpleTypeSet, SimpleTypeUnion, SimpleUnionToken, SimplifyObject, SingleQuote, SingularNoun, SingularNounEnding, SizingUnits, Slice, SliceArray, SliceString, SmartMark, SmartMarkPlus, SnakeCase, SnakeKeys, SocialMediaPlatform, SocialMediaProfileUrl, SocialMediaUrl, Solo, Some, SomeEqual, SomeExtend, Something, Sort, SortByKey, SortByKeyOptions, SortOptions, SortOrder, SouthKoreanNewsCompanies, SouthKoreanNewsUrls, SpanishNewsCompanies, SpanishNewsUrls, SpecialChar, Speed, SpeedMetrics, SpeedUom, Split, Split2, SplitAtVariadic, SplitOnWhitespace, StackFrame, StackTrace, StandardMark, StartsWith, StartsWithNumber, StartsWithTemplateLiteral, StaticFn, StaticTemplateSections, StaticToken, StaticTokenApi, StrLen, StringDelimiter, StringEncoder, StringIsAfter, StringKeys, StringLength, StringLiteralFromTuple, StringLiteralTemplate, StringLiteralToken, StringLiteralType, StringSort, StringSortOptions, StringTokenUtilities, StripAfter, StripAfterLast, StripBefore, StripChars, StripFirst, StripLeading, StripLeadingStringTemplate, StripLeadingTemplate, StripLeftNonAlpha, StripSlash, StripSurround, StripSurrounding, StripSurroundingStringTemplate, StripTrailing, StripTrailingStringTemplate, StripUntil, StripWhile, StrongMap, StrongMapTransformer, StrongMapTypes, StructuredStringType, Subtract, Success$1 as Success, Suggest, SuggestHexadecimal, SuggestIp6SubnetMask, SuggestIpAddress, Sum$1 as Sum, Surround, SwissNewsCompanies, SwissNewsUrls, SymbolKind, SyncFunction, Synchronous, TLD, TSV, TT_Atomic, TT_Container, TT_Function, TT_Set, TT_Singleton, TakeDate, TakeFirst, TakeFunction, TakeHours, TakeLast, TakeMilliseconds, TakeMinutes, TakeMonth, TakeNestedString, TakeNumeric, TakeNumericOptions, TakeParser, TakeProp, TakeSeconds, TakeStart, TakeStartCallback, TakeStartFn, TakeStartMatches, TakeStartMatchesKind, TakeStartMatches__Callback, TakeStartMatches__Default, TakeStartMatches__Mapper, TakeState, TakeTimezone, TakeUtility, TakeWrapper, TakeYear, TargetUrl, Temperature, TemperatureMetrics, TemperatureUom, TemplateBlock__BARE, TemplateBlocks, TemplateMap, TemplateMap__Basic, TemplateMap__Generics, TemplateParams, TemporalInstanceLike, TemporalLike, TemporalPlainDateTimeLike, TemporalTimeZoneLike, TemporalZonedDateTimeLike, Test, Thenable, ThreeDigitMillisecond, TimeMetric, TimeMetrics, TimeUom, TimeZoneExplicit, TimezoneOffset, ToBoolean, ToCSV, ToChoices, ToCsv, ToFn, ToInteger, ToIntegerOp, ToJson, ToJsonArray, ToJsonObject, ToJsonOptions, ToJsonScalar, ToJsonValue, ToKv, ToKvOptions, ToLiteralOptions, ToNumber, ToNumericArray, ToPhoneFormat, ToString, ToStringArray, ToStringLiteral, ToStringLiteral__Array, ToStringLiteral__Object, ToStringLiteral__Scalar, ToStringLiteral__Union, ToUnion, Token$1 as Token, TokenIsStatic, TokenMapper, TokenName, TokenParamsConstraint, TokenResolver, TokenSyntax, TokenType, TokenizeStringLiteral, Tokenizer, Trim, TrimCharEnd, TrimDictionary, TrimEach, TrimEnd, TrimLeft, TrimRight, TrimStart, Truncate, TruncateAtLen, TruthyReturns, Tuple$1 as Tuple, TupleDefn, TupleMeta, TupleRange, TupleToIntersection, TupleToUnion, TurkishNewsCompanies, TurkishNewsUrls, TwChroma, TwChroma100, TwChroma200, TwChroma300, TwChroma400, TwChroma50, TwChroma500, TwChroma600, TwChroma700, TwChroma800, TwChroma900, TwChroma950, TwChromaLookup, TwColor, TwColorOptionalOpacity, TwColorTarget, TwColorWithLuminosity, TwColorWithLuminosityOpacity, TwHue, TwLumi100, TwLumi200, TwLumi300, TwLumi400, TwLumi50, TwLumi500, TwLumi600, TwLumi700, TwLumi800, TwLumi900, TwLumi950, TwLuminosity, TwLuminosityLookup, TwModifier, TwModifier__Core, TwModifier__Order, TwModifier__Reln, TwModifier__Size, TwModifiers, TwNeutralColor, TwSizeResponsive, TwStaticColor, TwTarget__Color, TwTarget__ColorLuminosity, TwTarget__ColorLuminosityWithOpacity, TwTarget__ColorName, TwTarget__ColorWithOptPrefixes, TwTarget__Color__Light, TwVibrantColor, TwoDigitDate, TwoDigitHour, TwoDigitMinute, TwoDigitMonth, TwoDigitSecond, Type$1 as Type, TypeDefaultValue, TypeDefinition, TypeDefn, TypeDefnValidations, TypeGuard, TypeHasDefaultValue, TypeHasUnderlying, TypeHasValidations, TypeIsRequired, TypeKind, TypeKindContainer, TypeKindContainerNarrow, TypeKindContainerWide, TypeKindFalsy, TypeKindLiteral, TypeKindWide, TypeOf, TypeOfArray, TypeOfExtended, TypeOptions, TypeReplace, TypeRequired, TypeStrength, TypeSubtype, TypeToken, TypeTokenAtomics, TypeTokenContainers, TypeTokenDelimiter, TypeTokenFunctions, TypeTokenKind, TypeTokenLookup, TypeTokenSets, TypeTokenSingletons, TypeTokenStart, TypeTokenStop, TypeToken__Boolean, TypeToken__False, TypeToken__Fn, TypeToken__FnSet, TypeToken__Gen, TypeToken__Never, TypeToken__Null, TypeToken__Number, TypeToken__NumberSet, TypeToken__Rec, TypeToken__String, TypeToken__StringSet, TypeToken__True, TypeToken__Undefined, TypeToken__UnionSet, TypeToken__Unknown, TypeTuple, TypeUnderlying, TypedError, TypedFunction, TypedFunctionWithDictionary, TypedParameter, UUID, UUID_Urn, UkNewsCompanies, UkNewsUrls, Unbrand, UnbrandValues, UnderlyingType, UnionArrayToTuple, UnionElDefn, UnionFilter, UnionFrom, UnionFromProp, UnionHasArray, UnionMemberEquals, UnionMemberExtends, UnionMutate, UnionMutationOp, UnionToIntersection, UnionToString, UnionToTuple, UnionWithAll, Unique, UniqueKeys, UniqueKeysUnion, UniqueKv, Unset, UntilLast, UntilLastOptions, Uom, UpdateTake, UpperAlphaChar, UpsertKeyValue, Uri, UrlBuilder, UrlOptions, UrlPath, UrlPathChars, UrlPort, UrlQueryParameters, UrlsFrom, UsNewsCompanies, UsNewsUrls, UsPhoneNumber, UsStateAbbrev, UsStateName, ValidKey, Validate, ValidateCharacterSet, ValidateLength, ValidateLengthOptions, ValidateMax, ValidateMin, ValidationFunction, ValueAtDotPath, ValueCallback, ValueOrReturnValue, Values, Variable, VariableChar, VariadicParameterModifiers, VariadicType, Visa, VisaMastercard, Voltage, VoltageMetrics, VoltageUom, Volume, VolumeDefinition, VolumeMapping, VolumeMetrics, VolumeUom, VueComputedRef, VueRef, WalgreensUrl, WalmartUrl, WayFairUrl, WeakMapKeyDefn, WeakMapToString, WeakMapValueDefn, When, WhenErr, WhenNever, WhereLeft, Whitespace, WholeFoodsUrl, WideContainerNames, WideScalarModifiers, WideTokenNames, WideTypeName, Widen, WidenContainer, WidenFn, WidenFunction, WidenLiteral, WidenScalar, WidenTuple, WidenUnion, WidenValues, WithDefault, WithKeys, WithNumericKeys, WithStringKeys, WithTemplateKeys, WithValue, WithoutKeys, WithoutValue, WrapperFn, Xor, YouTubeCreatorUrl, YouTubeEmbedUrl, YouTubeFeedType, YouTubeFeedUrl, YouTubeHistoryUrl, YouTubeHome, YouTubeLikedPlaylistUrl, YouTubePageType, YouTubePlaylistUrl, YouTubeShareUrl, YouTubeSubscriptionsUrl, YouTubeUrl, YouTubeUsersPlaylistUrl, YouTubeVideoUrl, YouTubeVideosInPlaylist, ZaraUrl, Zero, ZeroToMany, ZeroToOne, ZeroToZero, Zip5, ZipCode, ZipPlus4, ZipToState, _TrimDict };
28521
28691
  //# sourceMappingURL=index.d.ts.map