Update Bot

This commit is contained in:
2026-03-15 11:58:43 +01:00
parent b67c111ffc
commit cd99275933
560 changed files with 23173 additions and 55113 deletions

View File

@@ -1,5 +1,5 @@
export type ObjectDefinition = $typests.ObjectDefinition;
export type PropertyDefinition = $typests.PropertyDefinition;
export type ObjectDefinition = import("./types.ts").ObjectDefinition;
export type PropertyDefinition = import("./types.ts").PropertyDefinition;
/**
* @fileoverview Merge Strategy
*/
@@ -38,7 +38,6 @@ export class ObjectSchema {
/**
* Creates a new instance.
* @param {ObjectDefinition} definitions The schema definitions.
* @throws {Error} When the definitions are missing or invalid.
*/
constructor(definitions: ObjectDefinition);
/**
@@ -53,7 +52,7 @@ export class ObjectSchema {
* strategy.
* @param {...Object} objects The objects to merge.
* @returns {Object} A new object with a mix of all objects' keys.
* @throws {TypeError} If any object is invalid.
* @throws {Error} If any object is invalid.
*/
merge(...objects: any[]): any;
/**
@@ -122,4 +121,3 @@ export class ValidationStrategy {
*/
static "string!"(value: any): void;
}
import type * as $typests from "./types.ts";