@augment-vir/assert 30.0.4 → 30.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/assertions/boolean.d.ts +2 -2
  2. package/dist/assertions/boundary.d.ts +2 -2
  3. package/dist/assertions/enum.d.ts +2 -2
  4. package/dist/assertions/equality/entry-equality.d.ts +2 -2
  5. package/dist/assertions/equality/json-equality.d.ts +2 -2
  6. package/dist/assertions/equality/json-equality.js +1 -1
  7. package/dist/assertions/equality/simple-equality.d.ts +2 -2
  8. package/dist/assertions/equality/ts-type-equality.d.ts +4 -17
  9. package/dist/assertions/equality/ts-type-equality.js +1 -0
  10. package/dist/assertions/extendable-assertions.d.ts +43 -914
  11. package/dist/assertions/http.d.ts +1 -1
  12. package/dist/assertions/instance.d.ts +3 -3
  13. package/dist/assertions/keys.d.ts +3 -3
  14. package/dist/assertions/keys.js +1 -1
  15. package/dist/assertions/length.d.ts +2 -3
  16. package/dist/assertions/nullish.d.ts +2 -2
  17. package/dist/assertions/output.d.ts +2 -2
  18. package/dist/assertions/primitive.d.ts +3 -3
  19. package/dist/assertions/promise.d.ts +1 -1
  20. package/dist/assertions/runtime-type.d.ts +3 -3
  21. package/dist/assertions/throws.d.ts +2 -2
  22. package/dist/assertions/uuid.d.ts +2 -2
  23. package/dist/assertions/values.d.ts +2 -2
  24. package/dist/augments/guards/assert-wrap.d.ts +3 -254
  25. package/dist/augments/guards/assert.d.ts +4 -155
  26. package/dist/augments/guards/assert.js +6 -3
  27. package/dist/augments/guards/check-wrap.d.ts +4 -255
  28. package/dist/augments/guards/check-wrap.js +1 -1
  29. package/dist/augments/guards/check.d.ts +4 -255
  30. package/dist/augments/guards/wait-until.d.ts +3 -229
  31. package/dist/guard-types/assert-wrap-function.d.ts +2 -2
  32. package/dist/guard-types/check-function.d.ts +2 -2
  33. package/dist/guard-types/check-wrap-wrapper-function.d.ts +3 -3
  34. package/dist/guard-types/guard-override.d.ts +1 -1
  35. package/dist/guard-types/wait-until-function.d.ts +3 -4
  36. package/dist/index.d.ts +1 -1
  37. package/dist/test-timeout.mock.d.ts +2 -2
  38. package/package.json +2 -2
  39. package/dist/assertions/output.example.d.ts +0 -1
  40. package/dist/assertions/output.example.js +0 -13
  41. package/dist/assertions/runtime-type.example.d.ts +0 -1
  42. package/dist/assertions/runtime-type.example.js +0 -3
  43. package/dist/assertions/throws.example.d.ts +0 -1
  44. package/dist/assertions/throws.example.js +0 -11
  45. package/dist/augments/assertion.error.example.d.ts +0 -1
  46. package/dist/augments/assertion.error.example.js +0 -3
  47. package/dist/augments/guards/assert-wrap.example.d.ts +0 -1
  48. package/dist/augments/guards/assert-wrap.example.js +0 -9
  49. package/dist/augments/guards/assert.example.d.ts +0 -1
  50. package/dist/augments/guards/assert.example.js +0 -4
  51. package/dist/augments/guards/check-wrap.example.d.ts +0 -1
  52. package/dist/augments/guards/check-wrap.example.js +0 -9
  53. package/dist/augments/guards/check.example.d.ts +0 -1
  54. package/dist/augments/guards/check.example.js +0 -5
  55. package/dist/augments/guards/wait-until.example.d.ts +0 -1
  56. package/dist/augments/guards/wait-until.example.js +0 -13
@@ -1,923 +1,52 @@
1
1
  import type { ArrayElement } from '@augment-vir/core';
2
2
  import type { UnionToIntersection } from 'type-fest';
3
- export declare const extendableAssertions: {
4
- output: {
5
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<NoInfer<FunctionToCall>>> extends true ? void : Promise<void> : void;
6
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(asserter: import("./output.js").CustomOutputAsserter<NoInfer<FunctionToCall>>, functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<NoInfer<FunctionToCall>>> extends true ? void : Promise<void> : void;
7
- };
8
- isHttpStatus: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").HttpStatus;
9
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(actual: Actual, category: Category, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>>;
10
- hasValue: (parent: object, value: unknown, failureMessage?: string | undefined) => void;
11
- lacksValue: (parent: object, value: unknown, failureMessage?: string | undefined) => void;
12
- hasValues: (parent: object, values: ReadonlyArray<unknown>, failureMessage?: string | undefined) => void;
13
- lacksValues: (parent: object, values: ReadonlyArray<unknown>, failureMessage?: string | undefined) => void;
14
- isIn: typeof import("./values.js").isIn;
15
- isNotIn: <const Parent extends object | string, const Child>(child: Child, parent: Parent, failureMessage?: string | undefined) => asserts child is Exclude<Child, import("@augment-vir/core").Values<Parent>>;
16
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty>;
17
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("./values.js").Empty>;
18
- isUuid: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").Uuid;
19
- isNotUuid: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").Uuid>;
20
- throws: {
21
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, never>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): void;
22
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, Promise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Promise<void>;
23
- (callback: import("@augment-vir/core").TypedFunction<void, any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): void;
24
- (callback: import("@augment-vir/core").TypedFunction<void, import("@augment-vir/core").MaybePromise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): import("@augment-vir/core").MaybePromise<void>;
25
- };
26
- isError: (actual: unknown, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined) => asserts actual is Error;
27
- strictEquals: typeof import("./equality/simple-equality.js").strictEquals;
28
- notStrictEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
29
- looseEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
30
- notLooseEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
31
- deepEquals: typeof import("./equality/simple-equality.js").deepEquals;
32
- notDeepEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
33
- isArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>;
34
- isBigInt: (actual: unknown, failureMessage?: string | undefined) => asserts actual is bigint;
35
- isBoolean: (actual: unknown, failureMessage?: string | undefined) => asserts actual is boolean;
36
- isFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction>;
37
- isNull: (actual: unknown, failureMessage?: string | undefined) => asserts actual is null;
38
- isNumber: (actual: unknown, failureMessage?: string | undefined) => asserts actual is number;
39
- isObject: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").UnknownObject;
40
- isString: (actual: unknown, failureMessage?: string | undefined) => asserts actual is string;
41
- isSymbol: (actual: unknown, failureMessage?: string | undefined) => asserts actual is symbol;
42
- isUndefined: (actual: unknown, failureMessage?: string | undefined) => asserts actual is undefined;
43
- isNotArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, ReadonlyArray<unknown>>;
44
- isNotBigInt: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, bigint>;
45
- isNotBoolean: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, boolean>;
46
- isNotFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").AnyFunction>;
47
- isNotNull: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, null>;
48
- isNotNumber: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, number>;
49
- isNotObject: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").UnknownObject>;
50
- isNotString: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, string>;
51
- isNotSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, symbol>;
52
- isNotUndefined: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, undefined>;
53
- matches: (actual: string, expected: RegExp, failureMessage?: string | undefined) => void;
54
- mismatches: (actual: string, expected: RegExp, failureMessage?: string | undefined) => void;
55
- isPromiseLike: (actual: unknown, failureMessage?: string | undefined) => asserts actual is PromiseLike<any>;
56
- isNotPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, PromiseLike<any>>;
57
- isPromise: (actual: unknown, failureMessage?: string | undefined) => asserts actual is Promise<any>;
58
- isNotPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, Promise<any>>;
59
- isPropertyKey: (input: unknown, failureMessage?: string | undefined) => asserts input is PropertyKey;
60
- isNotPropertyKey: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, PropertyKey>;
61
- isPrimitive: (input: unknown, failureMessage?: string | undefined) => asserts input is import("type-fest").Primitive;
62
- isNotPrimitive: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, import("type-fest").Primitive>;
63
- isAbove: (actual: number, expected: number, failureMessage?: string | undefined) => void;
64
- isAtLeast: (actual: number, expected: number, failureMessage?: string | undefined) => void;
65
- isBelow: (actual: number, expected: number, failureMessage?: string | undefined) => void;
66
- isAtMost: (actual: number, expected: number, failureMessage?: string | undefined) => void;
67
- isNaN: (actual: number, failureMessage?: string | undefined) => void;
68
- isFinite: (actual: number, failureMessage?: string | undefined) => void;
69
- isInfinite: (actual: number, failureMessage?: string | undefined) => void;
70
- isApproximately: (actual: number, expected: number, delta: number, failureMessage?: string | undefined) => void;
71
- isNotApproximately: (actual: number, expected: number, delta: number, failureMessage?: string | undefined) => void;
72
- isDefined: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, undefined | null>;
73
- isNullish: (input: unknown, failureMessage?: string | undefined) => asserts input is null | undefined;
74
- isLengthAtLeast: {
75
- <const Element, const Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length, failureMessage?: string | undefined): asserts actual is import("@augment-vir/core").AtLeastTuple<Element, Length>;
76
- (actual: string | import("@augment-vir/core").AnyObject, length: number, failureMessage?: string | undefined): void;
77
- };
78
- isLengthExactly: {
79
- <const Element, const Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length, failureMessage?: string | undefined): asserts actual is import("@augment-vir/core").Tuple<Element, Length>;
80
- (actual: string | import("@augment-vir/core").AnyObject, length: number, failureMessage?: string | undefined): void;
81
- };
82
- isKeyOf: <const Parent>(key: PropertyKey, parent: Parent, failureMessage?: string | undefined) => asserts key is keyof Parent;
83
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => asserts key is Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>>;
84
- hasKey: <const Key extends PropertyKey, const Parent>(parent: Parent, key: Key, failureMessage?: string | undefined) => asserts parent is Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>;
85
- lacksKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => asserts parent is Exclude<Parent, Record<Key, any>>;
86
- hasKeys: <const Keys extends PropertyKey, const Parent>(parent: Parent, keys: ReadonlyArray<Keys>, failureMessage?: string | undefined) => asserts parent is Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>;
87
- lacksKeys: <const Parent, const Key extends PropertyKey>(parent: Parent, keys: ReadonlyArray<Key>, failureMessage?: string | undefined) => asserts parent is Exclude<Parent, Partial<Record<Key, any>>>;
88
- jsonEquals: <const Actual, const Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => asserts actual is Expected;
89
- notJsonEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
90
- instanceOf: <const Instance>(instance: unknown, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => asserts instance is Instance;
91
- notInstanceOf: <const Actual, const Instance>(instance: Actual, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => asserts instance is Exclude<Actual, Instance>;
92
- isEnumValue: typeof import("./enum.js").isEnumValue;
93
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected, failureMessage?: string | undefined) => asserts child is Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`>;
94
- entriesEqual: <const Actual extends object, const Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => asserts actual is Expected;
95
- notEntriesEqual: (actual: object, expected: object, failureMessage?: string | undefined) => void;
96
- endsWith: {
97
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
98
- (parent: string, child: string, failureMessage?: string | undefined): void;
99
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
100
- };
101
- endsWithout: {
102
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
103
- (parent: string, child: string, failureMessage?: string | undefined): void;
104
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
105
- };
106
- startsWith: {
107
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
108
- (parent: string, child: string, failureMessage?: string | undefined): void;
109
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
110
- };
111
- startsWithout: {
112
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
113
- (parent: string, child: string, failureMessage?: string | undefined): void;
114
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
115
- };
116
- isFalse: (input: unknown, failureMessage?: string | undefined) => asserts input is false;
117
- isFalsy: (input: unknown, failureMessage?: string | undefined) => asserts input is import("./boolean.js").FalsyValue;
118
- isTrue: (input: unknown, failureMessage?: string | undefined) => asserts input is true;
119
- isTruthy: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is import("./boolean.js").Truthy<Actual>;
120
- };
3
+ import { booleanGuards } from './boolean.js';
4
+ import { boundaryGuards } from './boundary.js';
5
+ import { enumGuards } from './enum.js';
6
+ import { entryEqualityGuards } from './equality/entry-equality.js';
7
+ import { jsonEqualityGuards } from './equality/json-equality.js';
8
+ import { simpleEqualityGuards } from './equality/simple-equality.js';
9
+ import { httpGuards } from './http.js';
10
+ import { instanceGuards } from './instance.js';
11
+ import { keyGuards } from './keys.js';
12
+ import { lengthGuards } from './length.js';
13
+ import { nullishGuards } from './nullish.js';
14
+ import { numericGuards } from './numeric.js';
15
+ import { outputGuards } from './output.js';
16
+ import { primitiveGuards } from './primitive.js';
17
+ import { promiseGuards } from './promise.js';
18
+ import { regexpGuards } from './regexp.js';
19
+ import { runtimeTypeGuards } from './runtime-type.js';
20
+ import { throwGuards } from './throws.js';
21
+ import { uuidGuards } from './uuid.js';
22
+ import { valueGuards } from './values.js';
23
+ export declare const extendableAssertions: typeof booleanGuards.assert & typeof boundaryGuards.assert & typeof entryEqualityGuards.assert & typeof enumGuards.assert & typeof instanceGuards.assert & typeof jsonEqualityGuards.assert & typeof keyGuards.assert & typeof lengthGuards.assert & typeof nullishGuards.assert & typeof numericGuards.assert & typeof primitiveGuards.assert & typeof promiseGuards.assert & typeof regexpGuards.assert & typeof runtimeTypeGuards.assert & typeof simpleEqualityGuards.assert & typeof throwGuards.assert & typeof uuidGuards.assert & typeof valueGuards.assert & typeof httpGuards.assert & typeof outputGuards.assert;
121
24
  /**
122
25
  * These overrides are required for more complex guards because TypeScript won't allow us to
123
26
  * maintain function type parameters when mapping such functions.
124
27
  */
125
- export declare const guardOverrides: [{
126
- assert: {
127
- isFalse: (input: unknown, failureMessage?: string | undefined) => asserts input is false;
128
- isFalsy: (input: unknown, failureMessage?: string | undefined) => asserts input is import("./boolean.js").FalsyValue;
129
- isTrue: (input: unknown, failureMessage?: string | undefined) => asserts input is true;
130
- isTruthy: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is import("./boolean.js").Truthy<Actual>;
131
- };
132
- check: {
133
- isFalse: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
134
- isFalsy: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
135
- isTrue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
136
- isTruthy: <T>(input: T) => input is import("./boolean.js").Truthy<T>;
137
- };
138
- assertWrap: {
139
- isFalse: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
140
- isFalsy: <T>(input: T, failureMessage?: string | undefined) => import("./boolean.js").Falsy<T>;
141
- isTrue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
142
- isTruthy: <T>(input: T, failureMessage?: string | undefined) => import("./boolean.js").Truthy<T>;
143
- };
144
- checkWrap: {
145
- isFalse: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
146
- isFalsy: <T>(input: T) => import("./boolean.js").Falsy<T> | undefined;
147
- isTrue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
148
- isTruthy: <T>(input: T) => import("./boolean.js").Truthy<T> | undefined;
149
- };
150
- waitUntil: {
151
- isFalse: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
152
- isFalsy: <Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("./boolean.js").Falsy<Actual>>;
153
- isTrue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
154
- isTruthy: <Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("./boolean.js").Truthy<Actual>>;
155
- };
156
- }, {
157
- assert: {
158
- endsWith: {
159
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
160
- (parent: string, child: string, failureMessage?: string | undefined): void;
161
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
162
- };
163
- endsWithout: {
164
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
165
- (parent: string, child: string, failureMessage?: string | undefined): void;
166
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
167
- };
168
- startsWith: {
169
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
170
- (parent: string, child: string, failureMessage?: string | undefined): void;
171
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
172
- };
173
- startsWithout: {
174
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): void;
175
- (parent: string, child: string, failureMessage?: string | undefined): void;
176
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): void;
177
- };
178
- };
179
- check: {
180
- endsWith: {
181
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): boolean;
182
- (parent: string, child: string, failureMessage?: string | undefined): boolean;
183
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): boolean;
184
- };
185
- endsWithout: {
186
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): boolean;
187
- (parent: string, child: string, failureMessage?: string | undefined): boolean;
188
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): boolean;
189
- };
190
- startsWith: {
191
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): boolean;
192
- (parent: string, child: string, failureMessage?: string | undefined): boolean;
193
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): boolean;
194
- };
195
- startsWithout: {
196
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): boolean;
197
- (parent: string, child: string, failureMessage?: string | undefined): boolean;
198
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): boolean;
199
- };
200
- };
201
- assertWrap: {
202
- endsWith: {
203
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent;
204
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent;
205
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent;
206
- };
207
- endsWithout: {
208
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent;
209
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent;
210
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent;
211
- };
212
- startsWith: {
213
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent;
214
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent;
215
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent;
216
- };
217
- startsWithout: {
218
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent;
219
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent;
220
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent;
221
- };
222
- };
223
- checkWrap: {
224
- endsWith: {
225
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent | undefined;
226
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent | undefined;
227
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent | undefined;
228
- };
229
- endsWithout: {
230
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent | undefined;
231
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent | undefined;
232
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent | undefined;
233
- };
234
- startsWith: {
235
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent | undefined;
236
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent | undefined;
237
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent | undefined;
238
- };
239
- startsWithout: {
240
- <const ArrayElement>(parent: ReadonlyArray<ArrayElement>, child: ArrayElement, failureMessage?: string | undefined): typeof parent | undefined;
241
- (parent: string, child: string, failureMessage?: string | undefined): typeof parent | undefined;
242
- (parent: string | ReadonlyArray<string>, child: string, failureMessage?: string | undefined): typeof parent | undefined;
243
- };
244
- };
245
- waitUntil: {
246
- endsWith: {
247
- <const ArrayElement>(child: ArrayElement, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<ArrayElement>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<ReadonlyArray<ArrayElement>>;
248
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string>;
249
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string | ReadonlyArray<string>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string | ReadonlyArray<string>>;
250
- };
251
- endsWithout: {
252
- <const ArrayElement>(child: ArrayElement, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<ArrayElement>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<ReadonlyArray<ArrayElement>>;
253
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string>;
254
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string | ReadonlyArray<string>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string | ReadonlyArray<string>>;
255
- };
256
- startsWith: {
257
- <const ArrayElement>(child: ArrayElement, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<ArrayElement>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<ReadonlyArray<ArrayElement>>;
258
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string>;
259
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string | ReadonlyArray<string>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string | ReadonlyArray<string>>;
260
- };
261
- startsWithout: {
262
- <const ArrayElement>(child: ArrayElement, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<ArrayElement>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<ReadonlyArray<ArrayElement>>;
263
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string>;
264
- (child: string, callback: () => import("@augment-vir/core").MaybePromise<string | ReadonlyArray<string>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<string | ReadonlyArray<string>>;
265
- };
266
- };
267
- }, {
268
- assert: {
269
- entriesEqual: <const Actual extends object, const Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => asserts actual is Expected;
270
- notEntriesEqual: (actual: object, expected: object, failureMessage?: string | undefined) => void;
271
- };
272
- check: {
273
- entriesEqual: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => actual is Expected;
274
- notEntriesEqual: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
275
- };
276
- assertWrap: {
277
- entriesEqual: <Actual, Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, Expected>;
278
- notEntriesEqual: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
279
- };
280
- checkWrap: {
281
- entriesEqual: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => import("@augment-vir/core").NarrowToExpected<Actual, Expected> | undefined;
282
- notEntriesEqual: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
283
- };
284
- waitUntil: {
285
- entriesEqual: <Actual, Expected extends Actual>(expected: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, Expected>>;
286
- notEntriesEqual: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
287
- };
288
- }, {
289
- assert: {
290
- isEnumValue: typeof import("./enum.js").isEnumValue;
291
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected, failureMessage?: string | undefined) => asserts child is Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`>;
292
- };
293
- check: {
294
- isEnumValue: <const Expected extends import("@augment-vir/core").EnumBaseType>(child: unknown, checkEnum: Expected) => child is Expected[keyof Expected];
295
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected) => child is Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`>;
296
- };
297
- assertWrap: {
298
- isEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, Expected[keyof Expected]>;
299
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected, failureMessage?: string | undefined) => Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`>;
300
- };
301
- checkWrap: {
302
- isEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected) => import("@augment-vir/core").NarrowToExpected<Actual, Expected[keyof Expected]> | undefined;
303
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(child: Actual, checkEnum: Expected) => Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`> | undefined;
304
- };
305
- waitUntil: {
306
- isEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(checkEnum: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, Expected[keyof Expected]>>;
307
- isNotEnumValue: <const Actual, const Expected extends import("@augment-vir/core").EnumBaseType>(checkEnum: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, Expected[keyof Expected] | `${Expected[keyof Expected]}`>>;
308
- };
309
- }, {
310
- assert: {
311
- instanceOf: <const Instance>(instance: unknown, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => asserts instance is Instance;
312
- notInstanceOf: <const Actual, const Instance>(instance: Actual, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => asserts instance is Exclude<Actual, Instance>;
313
- };
314
- check: {
315
- instanceOf: <const Instance>(instance: unknown, constructor: import("type-fest").Constructor<Instance>) => instance is Instance;
316
- notInstanceOf: <const Actual, const Instance>(instance: Actual, constructor: import("type-fest").Constructor<Instance>) => instance is Exclude<Actual, Instance>;
317
- };
318
- assertWrap: {
319
- instanceOf: <const Instance>(instance: unknown, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => Instance;
320
- notInstanceOf: <const Actual, const Instance>(instance: Actual, constructor: import("type-fest").Constructor<Instance>, failureMessage?: string | undefined) => Exclude<Actual, Instance>;
321
- };
322
- checkWrap: {
323
- instanceOf: <const Instance>(instance: unknown, constructor: import("type-fest").Constructor<Instance>) => Instance | undefined;
324
- notInstanceOf: <const Actual, const Instance>(instance: Actual, constructor: import("type-fest").Constructor<Instance>) => Exclude<Actual, Instance> | undefined;
325
- };
326
- waitUntil: {
327
- instanceOf: <const Instance>(constructor: import("type-fest").Constructor<Instance>, callback: () => import("@augment-vir/core").MaybePromise<unknown>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Instance>;
328
- notInstanceOf: <const Actual, const Instance>(constructor: import("type-fest").Constructor<Instance>, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, Instance>>;
329
- };
330
- }, {
331
- assert: {
332
- jsonEquals: <const Actual, const Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => asserts actual is Expected;
333
- notJsonEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
334
- };
335
- check: {
336
- jsonEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => actual is Expected;
337
- notJsonEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
338
- };
339
- assertWrap: {
340
- jsonEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, Expected>;
341
- notJsonEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
342
- };
343
- checkWrap: {
344
- jsonEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => import("@augment-vir/core").NarrowToExpected<Actual, Expected> | undefined;
345
- notJsonEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
346
- };
347
- waitUntil: {
348
- jsonEquals: <Actual, Expected extends Actual>(expected: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, Expected>>;
349
- notJsonEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
350
- };
351
- }, {
352
- assert: {
353
- isKeyOf: <const Parent>(key: PropertyKey, parent: Parent, failureMessage?: string | undefined) => asserts key is keyof Parent;
354
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => asserts key is Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>>;
355
- hasKey: <const Key extends PropertyKey, const Parent>(parent: Parent, key: Key, failureMessage?: string | undefined) => asserts parent is Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>;
356
- lacksKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => asserts parent is Exclude<Parent, Record<Key, any>>;
357
- hasKeys: <const Keys extends PropertyKey, const Parent>(parent: Parent, keys: ReadonlyArray<Keys>, failureMessage?: string | undefined) => asserts parent is Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>;
358
- lacksKeys: <const Parent, const Key extends PropertyKey>(parent: Parent, keys: ReadonlyArray<Key>, failureMessage?: string | undefined) => asserts parent is Exclude<Parent, Partial<Record<Key, any>>>;
359
- };
360
- check: {
361
- isKeyOf: <const Parent>(key: PropertyKey, parent: Parent) => key is keyof Parent;
362
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => key is Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>>;
363
- hasKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key) => parent is Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>;
364
- lacksKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => parent is Exclude<Parent, Record<Key, any>>;
365
- hasKeys: <const Keys extends PropertyKey, const Parent>(parent: Parent, keys: ReadonlyArray<Keys>) => parent is Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>;
366
- lacksKeys: <const Parent, const Key extends PropertyKey>(parent: Parent, key: ReadonlyArray<Key>) => parent is Exclude<Parent, Partial<Record<Key, any>>>;
367
- };
368
- assertWrap: {
369
- isKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Key, keyof Parent>;
370
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>>;
371
- hasKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>;
372
- lacksKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => Exclude<Parent, Record<Key, any>>;
373
- hasKeys: <const Keys extends PropertyKey, const Parent>(parent: Parent, keys: ReadonlyArray<Keys>, failureMessage?: string | undefined) => Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>;
374
- lacksKeys: <const Parent, const Key extends PropertyKey>(parent: Parent, key: ReadonlyArray<Key>, failureMessage?: string | undefined) => Exclude<Parent, Partial<Record<Key, any>>>;
375
- };
376
- checkWrap: {
377
- isKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent) => import("@augment-vir/core").NarrowToExpected<Key, keyof Parent> | undefined;
378
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(key: Key, parent: Parent, failureMessage?: string | undefined) => Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>> | undefined;
379
- hasKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key) => (Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>) | undefined;
380
- lacksKey: <const Parent, const Key extends PropertyKey>(parent: Parent, key: Key, failureMessage?: string | undefined) => Exclude<Parent, Record<Key, any>> | undefined;
381
- hasKeys: <const Keys extends PropertyKey, const Parent>(parent: Parent, keys: ReadonlyArray<Keys>) => (Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>) | undefined;
382
- lacksKeys: <const Parent, const Key extends PropertyKey>(parent: Parent, key: ReadonlyArray<Key>) => Exclude<Parent, Partial<Record<Key, any>>> | undefined;
383
- };
384
- waitUntil: {
385
- isKeyOf: <const Key extends PropertyKey, const Parent>(parent: Parent, callback: () => import("@augment-vir/core").MaybePromise<Key>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Key, keyof Parent>>;
386
- isNotKeyOf: <const Key extends PropertyKey, const Parent>(parent: Parent, callback: () => import("@augment-vir/core").MaybePromise<Key>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Key, import("@augment-vir/core").RequiredKeysOf<Parent>>>;
387
- hasKey: <const Parent, const Key extends PropertyKey>(key: Key, callback: () => import("@augment-vir/core").MaybePromise<Parent>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Parent & Record<Key, (Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never) extends never ? unknown : Key extends keyof Parent ? import("type-fest").SetRequired<Parent, Key>[Key] : Key extends keyof Extract<Parent, Record<Key, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Key, any>>, Key>[Key] : never>>;
388
- lacksKey: <const Parent, const Key extends PropertyKey>(key: Key, callback: () => import("@augment-vir/core").MaybePromise<Parent>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Parent, Record<Key, any>>>;
389
- hasKeys: <const Keys extends PropertyKey, const Parent>(keys: ReadonlyArray<Keys>, callback: () => import("@augment-vir/core").MaybePromise<Parent>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Parent & Record<Keys, (Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never) extends never ? unknown : Keys extends keyof Parent ? import("type-fest").SetRequired<Parent, Keys>[Keys] : Keys extends keyof Extract<Parent, Record<Keys, any>> ? import("type-fest").SetRequired<Extract<Parent, Record<Keys, any>>, Keys>[Keys] : never>>;
390
- lacksKeys: <const Parent, const Keys extends PropertyKey>(keys: ReadonlyArray<Keys>, callback: () => import("@augment-vir/core").MaybePromise<Parent>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Parent, Partial<Record<Keys, any>>>>;
391
- };
392
- }, {
393
- assert: {
394
- isLengthAtLeast: {
395
- <const Element, const Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length, failureMessage?: string | undefined): asserts actual is import("@augment-vir/core").AtLeastTuple<Element, Length>;
396
- (actual: string | import("@augment-vir/core").AnyObject, length: number, failureMessage?: string | undefined): void;
397
- };
398
- isLengthExactly: {
399
- <const Element, const Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length, failureMessage?: string | undefined): asserts actual is import("@augment-vir/core").Tuple<Element, Length>;
400
- (actual: string | import("@augment-vir/core").AnyObject, length: number, failureMessage?: string | undefined): void;
401
- };
402
- };
403
- check: {
404
- isLengthAtLeast: {
405
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): actual is import("@augment-vir/core").AtLeastTuple<Element, Length>;
406
- (actual: string | import("@augment-vir/core").AnyObject, length: number): boolean;
407
- };
408
- isLengthExactly: {
409
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): actual is import("@augment-vir/core").Tuple<Element, Length>;
410
- (actual: string | import("@augment-vir/core").AnyObject, length: number): boolean;
411
- };
412
- };
413
- assertWrap: {
414
- isLengthAtLeast: {
415
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): import("@augment-vir/core").AtLeastTuple<Element, Length>;
416
- <Actual extends string | import("@augment-vir/core").AnyObject>(actual: Actual, length: number): Actual;
417
- };
418
- isLengthExactly: {
419
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): import("@augment-vir/core").Tuple<Element, Length>;
420
- <Actual extends string | import("@augment-vir/core").AnyObject>(actual: Actual, length: number): Actual;
421
- };
422
- };
423
- checkWrap: {
424
- isLengthAtLeast: {
425
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): import("@augment-vir/core").AtLeastTuple<Element, Length> | undefined;
426
- <Actual extends string | import("@augment-vir/core").AnyObject>(actual: Actual, length: number): Actual | undefined;
427
- };
428
- isLengthExactly: {
429
- <Element, Length extends number>(actual: ReadonlyArray<Element | undefined>, length: Length): import("@augment-vir/core").Tuple<Element, Length> | undefined;
430
- <Actual extends string | import("@augment-vir/core").AnyObject>(actual: Actual, length: number): Actual | undefined;
431
- };
432
- };
433
- waitUntil: {
434
- isLengthAtLeast: {
435
- <Element, Length extends number>(length: Length, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<Element | undefined>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<import("@augment-vir/core").AtLeastTuple<Element, Length>>;
436
- <Actual extends string | import("@augment-vir/core").AnyObject>(length: number, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<Actual>;
437
- };
438
- isLengthExactly: {
439
- <Element, Length extends number>(length: Length, callback: () => import("@augment-vir/core").MaybePromise<ReadonlyArray<Element | undefined>>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<import("@augment-vir/core").Tuple<Element, Length>>;
440
- <Actual extends string | import("@augment-vir/core").AnyObject>(length: number, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<Actual>;
441
- };
442
- };
443
- }, {
444
- assert: {
445
- isDefined: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, undefined | null>;
446
- isNullish: (input: unknown, failureMessage?: string | undefined) => asserts input is null | undefined;
447
- };
448
- check: {
449
- isDefined: <Actual>(input: Actual) => input is Exclude<Actual, undefined | null>;
450
- isNullish: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
451
- };
452
- assertWrap: {
453
- isDefined: <Actual>(input: Actual, failureMessage?: string | undefined) => Exclude<Actual, undefined | null>;
454
- isNullish: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
455
- };
456
- checkWrap: {
457
- isDefined: undefined;
458
- isNullish: undefined;
459
- };
460
- waitUntil: {
461
- isDefined: <Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, undefined | null>>;
462
- isNullish: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
463
- };
464
- }, {
465
- assert: {
466
- isAbove: (actual: number, expected: number, failureMessage?: string | undefined) => void;
467
- isAtLeast: (actual: number, expected: number, failureMessage?: string | undefined) => void;
468
- isBelow: (actual: number, expected: number, failureMessage?: string | undefined) => void;
469
- isAtMost: (actual: number, expected: number, failureMessage?: string | undefined) => void;
470
- isNaN: (actual: number, failureMessage?: string | undefined) => void;
471
- isFinite: (actual: number, failureMessage?: string | undefined) => void;
472
- isInfinite: (actual: number, failureMessage?: string | undefined) => void;
473
- isApproximately: (actual: number, expected: number, delta: number, failureMessage?: string | undefined) => void;
474
- isNotApproximately: (actual: number, expected: number, delta: number, failureMessage?: string | undefined) => void;
475
- };
476
- check: {
477
- isAbove: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
478
- isAtLeast: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
479
- isBelow: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
480
- isAtMost: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
481
- isNaN: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
482
- isFinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
483
- isInfinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
484
- isApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
485
- isNotApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
486
- };
487
- assertWrap: {
488
- isAbove: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
489
- isAtLeast: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
490
- isBelow: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
491
- isAtMost: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
492
- isNaN: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
493
- isFinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
494
- isInfinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
495
- isApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
496
- isNotApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
497
- };
498
- checkWrap: {
499
- isAbove: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
500
- isAtLeast: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
501
- isBelow: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
502
- isAtMost: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
503
- isNaN: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
504
- isFinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
505
- isInfinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
506
- isApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
507
- isNotApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
508
- };
509
- waitUntil: {
510
- isAbove: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
511
- isAtLeast: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
512
- isBelow: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
513
- isAtMost: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
514
- isNaN: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
515
- isFinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
516
- isInfinite: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
517
- isApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
518
- isNotApproximately: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
519
- };
520
- }, {
521
- assert: {
522
- isPropertyKey: (input: unknown, failureMessage?: string | undefined) => asserts input is PropertyKey;
523
- isNotPropertyKey: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, PropertyKey>;
524
- isPrimitive: (input: unknown, failureMessage?: string | undefined) => asserts input is import("type-fest").Primitive;
525
- isNotPrimitive: <const Actual>(input: Actual, failureMessage?: string | undefined) => asserts input is Exclude<Actual, import("type-fest").Primitive>;
526
- };
527
- check: {
528
- isNotPrimitive: <const Actual>(input: Actual) => input is Exclude<Actual, import("type-fest").Primitive>;
529
- isNotPropertyKey: <const Actual>(input: Actual) => input is Exclude<Actual, PropertyKey>;
530
- isPrimitive: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
531
- isPropertyKey: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
532
- };
533
- assertWrap: {
534
- isNotPrimitive: <const Actual>(input: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("type-fest").Primitive>;
535
- isNotPropertyKey: <const Actual>(input: Actual, failureMessage?: string | undefined) => Exclude<Actual, PropertyKey>;
536
- isPrimitive: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
537
- isPropertyKey: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
538
- };
539
- checkWrap: {
540
- isNotPrimitive: <const Actual>(input: Actual) => Exclude<Actual, import("type-fest").Primitive> | undefined;
541
- isNotPropertyKey: <const Actual>(input: Actual) => Exclude<Actual, PropertyKey> | undefined;
542
- isPrimitive: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
543
- isPropertyKey: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
544
- };
545
- waitUntil: {
546
- isNotPrimitive: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, import("type-fest").Primitive>>;
547
- isNotPropertyKey: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, PropertyKey>>;
548
- isPrimitive: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
549
- isPropertyKey: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
550
- };
551
- }, {
552
- assert: {
553
- isPromiseLike: (actual: unknown, failureMessage?: string | undefined) => asserts actual is PromiseLike<any>;
554
- isNotPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, PromiseLike<any>>;
555
- isPromise: (actual: unknown, failureMessage?: string | undefined) => asserts actual is Promise<any>;
556
- isNotPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, Promise<any>>;
557
- };
558
- check: {
559
- isPromiseLike: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
560
- isNotPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, PromiseLike<any>>;
561
- isPromise: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
562
- isNotPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, Promise<any>>;
563
- };
564
- assertWrap: {
565
- isPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Extract<Actual, PromiseLike<any>>;
566
- isNotPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, PromiseLike<any>>;
567
- isPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Extract<Actual, Promise<any>>;
568
- isNotPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, Promise<any>>;
569
- };
570
- checkWrap: {
571
- isNotPromise: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, Promise<any>> | undefined;
572
- isNotPromiseLike: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, PromiseLike<any>> | undefined;
573
- isPromise: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
574
- isPromiseLike: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
575
- };
576
- waitUntil: {
577
- isPromiseLike: <const Actual>(callback: () => Actual, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Extract<Actual, PromiseLike<any>>>;
578
- isNotPromiseLike: <const Actual>(callback: () => Actual, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, PromiseLike<any>>>;
579
- isPromise: <const Actual>(callback: () => Actual, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Extract<Actual, Promise<any>>>;
580
- isNotPromise: <const Actual>(callback: () => Actual, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, Promise<any>>>;
581
- };
582
- }, {
583
- assert: {
584
- matches: (actual: string, expected: RegExp, failureMessage?: string | undefined) => void;
585
- mismatches: (actual: string, expected: RegExp, failureMessage?: string | undefined) => void;
586
- };
587
- check: {
588
- matches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
589
- mismatches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
590
- };
591
- assertWrap: {
592
- matches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
593
- mismatches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
594
- };
595
- checkWrap: {
596
- matches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
597
- mismatches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
598
- };
599
- waitUntil: {
600
- matches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
601
- mismatches: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
602
- };
603
- }, {
604
- assert: {
605
- isArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>;
606
- isBigInt: (actual: unknown, failureMessage?: string | undefined) => asserts actual is bigint;
607
- isBoolean: (actual: unknown, failureMessage?: string | undefined) => asserts actual is boolean;
608
- isFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction>;
609
- isNull: (actual: unknown, failureMessage?: string | undefined) => asserts actual is null;
610
- isNumber: (actual: unknown, failureMessage?: string | undefined) => asserts actual is number;
611
- isObject: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").UnknownObject;
612
- isString: (actual: unknown, failureMessage?: string | undefined) => asserts actual is string;
613
- isSymbol: (actual: unknown, failureMessage?: string | undefined) => asserts actual is symbol;
614
- isUndefined: (actual: unknown, failureMessage?: string | undefined) => asserts actual is undefined;
615
- isNotArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, ReadonlyArray<unknown>>;
616
- isNotBigInt: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, bigint>;
617
- isNotBoolean: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, boolean>;
618
- isNotFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").AnyFunction>;
619
- isNotNull: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, null>;
620
- isNotNumber: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, number>;
621
- isNotObject: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").UnknownObject>;
622
- isNotString: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, string>;
623
- isNotSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, symbol>;
624
- isNotUndefined: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, undefined>;
625
- };
626
- check: {
627
- isArray: <Actual>(actual: Actual) => actual is Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>;
628
- isBigInt: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
629
- isBoolean: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
630
- isFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction>;
631
- isNull: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
632
- isNumber: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
633
- isObject: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
634
- isString: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
635
- isSymbol: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
636
- isUndefined: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
637
- isNotArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, ReadonlyArray<unknown>>;
638
- isNotBigInt: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, bigint>;
639
- isNotBoolean: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, boolean>;
640
- isNotFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, import("@augment-vir/core").AnyFunction>;
641
- isNotNull: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, null>;
642
- isNotNumber: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, number>;
643
- isNotObject: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, import("@augment-vir/core").UnknownObject>;
644
- isNotString: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, string>;
645
- isNotSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, symbol>;
646
- isNotUndefined: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, undefined>;
647
- };
648
- assertWrap: {
649
- isArray: <Actual>(actual: Actual) => Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>;
650
- isBigInt: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
651
- isBoolean: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
652
- isFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction>;
653
- isNull: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
654
- isNumber: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
655
- isObject: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
656
- isString: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
657
- isSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, symbol>;
658
- isUndefined: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
659
- isNotArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, ReadonlyArray<unknown>>;
660
- isNotBigInt: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, bigint>;
661
- isNotBoolean: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, boolean>;
662
- isNotFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").AnyFunction>;
663
- isNotNull: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, null>;
664
- isNotNumber: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, number>;
665
- isNotObject: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").UnknownObject>;
666
- isNotString: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, string>;
667
- isNotSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, symbol>;
668
- isNotUndefined: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, undefined>;
669
- };
670
- checkWrap: {
671
- isArray: <Actual>(actual: Actual) => (Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>) | undefined;
672
- isBigInt: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
673
- isBoolean: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
674
- isFunction: <const Actual>(actual: Actual) => import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction> | undefined;
675
- isNull: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
676
- isNumber: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
677
- isObject: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
678
- isString: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
679
- isSymbol: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
680
- isUndefined: undefined;
681
- isNotArray: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, ReadonlyArray<unknown>> | undefined;
682
- isNotBigInt: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, bigint> | undefined;
683
- isNotBoolean: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, boolean> | undefined;
684
- isNotFunction: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").AnyFunction> | undefined;
685
- isNotNull: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, null> | undefined;
686
- isNotNumber: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, number> | undefined;
687
- isNotObject: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").UnknownObject> | undefined;
688
- isNotString: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, string> | undefined;
689
- isNotSymbol: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, symbol> | undefined;
690
- isNotUndefined: undefined;
691
- };
692
- waitUntil: {
693
- isArray: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Extract<Actual, unknown[]> extends never ? Extract<Actual, readonly unknown[]> extends never ? unknown[] extends Actual ? Actual & unknown[] : never : Extract<Actual, readonly unknown[]> : Extract<Actual, unknown[]>>;
694
- isBigInt: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
695
- isBoolean: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
696
- isFunction: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToActual<Actual, import("@augment-vir/core").AnyFunction>>;
697
- isNull: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
698
- isNumber: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
699
- isObject: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
700
- isString: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
701
- isSymbol: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
702
- isUndefined: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
703
- isNotArray: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, ReadonlyArray<unknown>>>;
704
- isNotBigInt: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, bigint>>;
705
- isNotBoolean: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, boolean>>;
706
- isNotFunction: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, import("@augment-vir/core").AnyFunction>>;
707
- isNotNull: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, null>>;
708
- isNotNumber: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, number>>;
709
- isNotObject: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, import("@augment-vir/core").UnknownObject>>;
710
- isNotString: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, string>>;
711
- isNotSymbol: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, symbol>>;
712
- isNotUndefined: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, undefined>>;
713
- };
714
- }, {
715
- assert: {
716
- strictEquals: typeof import("./equality/simple-equality.js").strictEquals;
717
- notStrictEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
718
- looseEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
719
- notLooseEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
720
- deepEquals: typeof import("./equality/simple-equality.js").deepEquals;
721
- notDeepEquals: (actual: unknown, expected: unknown, failureMessage?: string | undefined) => void;
722
- };
723
- check: {
724
- strictEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => actual is Expected;
725
- notStrictEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
726
- looseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
727
- notLooseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
728
- deepEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => actual is Expected;
729
- notDeepEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
730
- };
731
- assertWrap: {
732
- strictEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, Expected>;
733
- notStrictEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
734
- looseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
735
- notLooseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
736
- deepEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, Expected>;
737
- notDeepEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
738
- };
739
- checkWrap: {
740
- strictEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => Expected | undefined;
741
- notStrictEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
742
- looseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
743
- notLooseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
744
- deepEquals: <Actual, Expected extends Actual>(actual: Actual, expected: Expected) => import("@augment-vir/core").NarrowToExpected<Actual, Expected> | undefined;
745
- notDeepEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
746
- };
747
- waitUntil: {
748
- strictEquals: <Actual, Expected extends Actual>(expected: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, Expected>>;
749
- notStrictEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
750
- looseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
751
- notLooseEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
752
- deepEquals: <Actual, Expected extends Actual>(expected: Expected, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, Expected>>;
753
- notDeepEquals: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
754
- };
755
- }, {
756
- assert: {
757
- throws: {
758
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, never>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): void;
759
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, Promise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Promise<void>;
760
- (callback: import("@augment-vir/core").TypedFunction<void, any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): void;
761
- (callback: import("@augment-vir/core").TypedFunction<void, import("@augment-vir/core").MaybePromise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): import("@augment-vir/core").MaybePromise<void>;
762
- };
763
- isError: (actual: unknown, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined) => asserts actual is Error;
764
- };
765
- check: {
766
- throws: {
767
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, never>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined): boolean;
768
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, Promise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined): Promise<boolean>;
769
- (callback: import("@augment-vir/core").TypedFunction<void, any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined): boolean;
770
- (callback: import("@augment-vir/core").TypedFunction<void, import("@augment-vir/core").MaybePromise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined): import("@augment-vir/core").MaybePromise<boolean>;
771
- };
772
- isError: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
773
- };
774
- assertWrap: {
775
- throws: {
776
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, never>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Error;
777
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, Promise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Promise<Error>;
778
- (callback: import("@augment-vir/core").TypedFunction<void, any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Error;
779
- (callback: import("@augment-vir/core").TypedFunction<void, import("@augment-vir/core").MaybePromise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): import("@augment-vir/core").MaybePromise<Error>;
780
- };
781
- isError: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
782
- };
783
- checkWrap: {
784
- throws: {
785
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, never>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Error | undefined;
786
- (callbackOrPromise: import("@augment-vir/core").TypedFunction<void, Promise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Promise<Error | undefined>;
787
- (callback: import("@augment-vir/core").TypedFunction<void, any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): Error | undefined;
788
- (callback: import("@augment-vir/core").TypedFunction<void, import("@augment-vir/core").MaybePromise<any>> | Promise<any>, matchOptions?: import("./throws.js").ErrorMatchOptions | undefined, failureMessage?: string | undefined): import("@augment-vir/core").MaybePromise<Error | undefined>;
789
- };
790
- isError: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
791
- };
792
- waitUntil: {
793
- throws: {
794
- (callback: import("@augment-vir/core").TypedFunction<void, any>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<Error>;
795
- (matchOptions: import("./throws.js").ErrorMatchOptions, callback: import("@augment-vir/core").TypedFunction<void, any>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined): Promise<Error>;
796
- };
797
- isError: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
798
- };
799
- }, {
800
- assert: {
801
- isUuid: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").Uuid;
802
- isNotUuid: <const Actual>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("@augment-vir/core").Uuid>;
803
- };
804
- check: {
805
- isUuid: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
806
- isNotUuid: <const Actual>(actual: Actual, failureMessage?: string | undefined) => actual is Exclude<Actual, import("@augment-vir/core").Uuid>;
807
- };
808
- assertWrap: {
809
- isUuid: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
810
- isNotUuid: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").Uuid>;
811
- };
812
- checkWrap: {
813
- isUuid: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
814
- isNotUuid: <const Actual>(actual: Actual, failureMessage?: string | undefined) => Exclude<Actual, import("@augment-vir/core").Uuid> | undefined;
815
- };
816
- waitUntil: {
817
- isUuid: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
818
- isNotUuid: <const Actual>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, import("@augment-vir/core").Uuid>>;
819
- };
820
- }, {
821
- assert: {
822
- hasValue: (parent: object, value: unknown, failureMessage?: string | undefined) => void;
823
- lacksValue: (parent: object, value: unknown, failureMessage?: string | undefined) => void;
824
- hasValues: (parent: object, values: ReadonlyArray<unknown>, failureMessage?: string | undefined) => void;
825
- lacksValues: (parent: object, values: ReadonlyArray<unknown>, failureMessage?: string | undefined) => void;
826
- isIn: typeof import("./values.js").isIn;
827
- isNotIn: <const Parent extends object | string, const Child>(child: Child, parent: Parent, failureMessage?: string | undefined) => asserts child is Exclude<Child, import("@augment-vir/core").Values<Parent>>;
828
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty>;
829
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual, failureMessage?: string | undefined) => asserts actual is Exclude<Actual, import("./values.js").Empty>;
830
- };
831
- check: {
832
- hasValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
833
- lacksValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
834
- hasValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
835
- lacksValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
836
- isIn: <const Parent>(child: unknown, parent: Parent) => child is import("@augment-vir/core").Values<Parent>;
837
- isNotIn: <const Parent, const Child>(child: Child, parent: Parent, failureMessage?: string | undefined) => child is Exclude<Child, import("@augment-vir/core").Values<Parent>>;
838
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual) => actual is import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty>;
839
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual) => actual is Exclude<Actual, import("./values.js").Empty>;
840
- };
841
- assertWrap: {
842
- hasValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
843
- lacksValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
844
- hasValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
845
- lacksValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
846
- isIn: <const Child, const Parent>(child: Child, parent: Parent, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Child, import("@augment-vir/core").Values<Parent>>;
847
- isNotIn: <const Parent, const Child>(child: Child, parent: Parent, failureMessage?: string | undefined) => Exclude<Child, import("@augment-vir/core").Values<Parent>>;
848
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty>;
849
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual) => Exclude<Actual, import("./values.js").Empty>;
850
- };
851
- checkWrap: {
852
- hasValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
853
- lacksValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
854
- hasValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
855
- lacksValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
856
- isIn: <const Child, const Parent>(child: Child, parent: Parent) => import("@augment-vir/core").NarrowToExpected<Child, import("@augment-vir/core").Values<Parent>> | undefined;
857
- isNotIn: <const Parent, const Child>(child: Child, parent: Parent, failureMessage?: string | undefined) => Exclude<Child, import("@augment-vir/core").Values<Parent>> | undefined;
858
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual) => import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty> | undefined;
859
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(actual: Actual) => Exclude<Actual, import("./values.js").Empty> | undefined;
860
- };
861
- waitUntil: {
862
- hasValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
863
- lacksValue: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
864
- hasValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
865
- lacksValues: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
866
- isIn: <const Child, const Parent>(parent: Parent, callback: () => import("@augment-vir/core").MaybePromise<Child>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Child, import("@augment-vir/core").Values<Parent>>>;
867
- isNotIn: <const Child, const Parent>(parent: Parent, callback: () => import("@augment-vir/core").MaybePromise<Child>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Child, import("@augment-vir/core").Values<Parent>>>;
868
- isEmpty: <const Actual extends import("./values.js").CanBeEmpty>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToActual<Actual, import("./values.js").Empty>>;
869
- isNotEmpty: <const Actual extends import("./values.js").CanBeEmpty>(callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<Exclude<Actual, import("./values.js").Empty>>;
870
- };
871
- }, {
872
- assert: {
873
- isHttpStatus: (actual: unknown, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").HttpStatus;
874
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(actual: Actual, category: Category, failureMessage?: string | undefined) => asserts actual is import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>>;
875
- };
876
- check: {
877
- isHttpStatus: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
878
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(actual: Actual, category: Category, failureMessage?: string | undefined) => actual is import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>>;
879
- };
880
- assertWrap: {
881
- isHttpStatus: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
882
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(actual: Actual, category: Category, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>>;
883
- };
884
- checkWrap: {
885
- isHttpStatus: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
886
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(actual: Actual, category: Category, failureMessage?: string | undefined) => import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>> | undefined;
887
- };
888
- waitUntil: {
889
- isHttpStatus: typeof import("../guard-types/guard-override.js").autoGuardSymbol;
890
- isHttpStatusCategory: <const Actual, const Category extends import("@augment-vir/core").HttpStatusCategory>(category: Category, callback: () => import("@augment-vir/core").MaybePromise<Actual>, options?: import("../index.js").WaitUntilOptions | undefined, failureMessage?: string | undefined) => Promise<import("@augment-vir/core").NarrowToExpected<Actual, import("@augment-vir/core").HttpStatusByCategory<Category>>>;
891
- };
892
- }, {
893
- assert: {
894
- output: {
895
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<NoInfer<FunctionToCall>>> extends true ? void : Promise<void> : void;
896
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(asserter: import("./output.js").CustomOutputAsserter<NoInfer<FunctionToCall>>, functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<NoInfer<FunctionToCall>>> extends true ? void : Promise<void> : void;
897
- };
898
- };
899
- check: {
900
- output: {
901
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? boolean : Promise<boolean> : boolean;
902
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(asserter: import("./output.js").CustomOutputAsserter<NoInfer<FunctionToCall>>, functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? boolean : Promise<boolean> : boolean;
903
- };
904
- };
905
- assertWrap: {
906
- output: {
907
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? Awaited<ReturnType<NoInfer<FunctionToCall>>> : Promise<Awaited<ReturnType<NoInfer<FunctionToCall>>>> : Awaited<ReturnType<NoInfer<FunctionToCall>>>;
908
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(asserter: import("./output.js").CustomOutputAsserter<NoInfer<FunctionToCall>>, functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? Awaited<ReturnType<NoInfer<FunctionToCall>>> : Promise<Awaited<ReturnType<NoInfer<FunctionToCall>>>> : Awaited<ReturnType<NoInfer<FunctionToCall>>>;
909
- };
910
- };
911
- checkWrap: {
912
- output: {
913
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined : Promise<Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined> : Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined;
914
- <const FunctionToCall extends import("@augment-vir/core").AnyFunction>(asserter: import("./output.js").CustomOutputAsserter<NoInfer<FunctionToCall>>, functionToCall: FunctionToCall, inputs: Parameters<NoInfer<FunctionToCall>>, expectedOutput: Awaited<ReturnType<NoInfer<FunctionToCall>>>, failureMessage?: string | undefined): Promise<any> extends ReturnType<NoInfer<FunctionToCall>> ? import("type-fest").IsAny<ReturnType<FunctionToCall>> extends true ? Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined : Promise<Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined> : Awaited<ReturnType<NoInfer<FunctionToCall>>> | undefined;
915
- };
916
- };
917
- waitUntil: {
918
- output: typeof import("./output.js").waitUntilOutput;
919
- };
920
- }];
28
+ export declare const guardOverrides: [
29
+ typeof booleanGuards,
30
+ typeof boundaryGuards,
31
+ typeof entryEqualityGuards,
32
+ typeof enumGuards,
33
+ typeof instanceGuards,
34
+ typeof jsonEqualityGuards,
35
+ typeof keyGuards,
36
+ typeof lengthGuards,
37
+ typeof nullishGuards,
38
+ typeof numericGuards,
39
+ typeof primitiveGuards,
40
+ typeof promiseGuards,
41
+ typeof regexpGuards,
42
+ typeof runtimeTypeGuards,
43
+ typeof simpleEqualityGuards,
44
+ typeof throwGuards,
45
+ typeof uuidGuards,
46
+ typeof valueGuards,
47
+ typeof httpGuards,
48
+ typeof outputGuards
49
+ ];
921
50
  export declare const checkOverrides: UnionToIntersection<ArrayElement<typeof guardOverrides>['check']>;
922
51
  export declare const assertWrapOverrides: UnionToIntersection<Extract<ArrayElement<typeof guardOverrides>, {
923
52
  assertWrap: any;