mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-23 12:39:59 +01:00
いい感じに
This commit is contained in:
parent
0a5fedf38b
commit
8ed36364d2
@ -79,25 +79,23 @@ class NumberValidator extends ValidatorCore {
|
||||
}
|
||||
}
|
||||
|
||||
const it = (value) => {
|
||||
return {
|
||||
must: {
|
||||
be: {
|
||||
a: {
|
||||
string: 0,
|
||||
number: () => new NumberValidator(value),
|
||||
boolean: 0,
|
||||
set: 0
|
||||
},
|
||||
an: {
|
||||
id: 0,
|
||||
array: 0,
|
||||
object: 0
|
||||
}
|
||||
const it = (value: any) => ({
|
||||
must: {
|
||||
be: {
|
||||
a: {
|
||||
string: 0,
|
||||
number: () => new NumberValidator(value),
|
||||
boolean: 0,
|
||||
set: 0
|
||||
},
|
||||
an: {
|
||||
id: 0,
|
||||
array: 0,
|
||||
object: 0
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
export default it;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user