Files
serialize-js/types/Int.d.ts
2025-08-05 10:09:53 +03:00

4 lines
102 B
TypeScript

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