Supporting void function return type

This commit is contained in:
K35
2022-01-01 15:03:43 +00:00
parent 478094f2c3
commit 579055d8fb
7 changed files with 21 additions and 10 deletions

View File

@ -46,3 +46,7 @@ export function verify_boolean(data: any) {
return true;
}
export function verify_void(data: any) {
return true;
}