feat(Int)

This commit is contained in:
2025-08-05 10:09:53 +03:00
parent 8c2d7118c2
commit f5b485d546
5 changed files with 123 additions and 2 deletions

3
types/Int.d.ts vendored Normal file
View File

@ -0,0 +1,3 @@
import { Type } from ".";
export function Int(bits: 8 | 16 | 32, sign: 'signed' | 'unsigned'): Type;