interface SafeIntegerIssue implements BaseIssue<TInput>import { type SafeIntegerIssue } from "https://deno.land/x/valibot@v1.0.0-beta.4/src/index.ts"; Safe integer issue type. Type ParametersTInput extends numberPropertiesreadonlykind: "validation"The issue kind. readonlytype: "safe_integer"The issue type. readonlyexpected: nullThe expected property. readonlyreceived: `${number}`The received property. readonlyrequirement: (input: number) => booleanThe validation function.