import { from } from "./from.js";
/**
* Declare a model with any type (By default: `integer`, `number`, `string`, `boolean`, `array`, `object`, `null`)
*
* See @@JsonSchema@@ to discover available methods.
*/
export function any(...types) {
return from().any(...types);
}