/var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/cjs/utils
NameSizeModeActions
arrays.d.ts10890644editdlrm
async.d.ts1990644editdlrm
base64.d.ts5400644editdlrm
Cache.d.ts3200644editdlrm
errors.d.ts910644editdlrm
index.d.ts3670644editdlrm
numbers.d.ts9050644editdlrm
objects.d.ts4860644editdlrm
pdfDocEncoding.d.ts3160644editdlrm
png.d.ts5800644editdlrm
rng.d.ts4690644editdlrm
strings.d.ts16580644editdlrm
unicode.d.ts85160644editdlrm
validators.d.ts20570644editdlrm
Edit: /var/www/greso.tech/server/nsm/node_modules/pdf-lib/ts3.4/cjs/utils/numbers.d.ts (905B)
/** * Converts a number to its string representation in decimal. This function * differs from simply converting a number to a string with `.toString()` * because this function's output string will **not** contain exponential * notation. * * Credit: https://stackoverflow.com/a/46545519 */ export declare const numberToString: (num: number) => string; export declare const sizeInBytes: (n: number) => number; /** * Converts a number into its constituent bytes and returns them as * a number[]. * * Returns most significant byte as first element in array. It may be necessary * to call .reverse() to get the bits in the desired order. * * Example: * bytesFor(0x02A41E) => [ 0b10, 0b10100100, 0b11110 ] * * Credit for algorithm: https://stackoverflow.com/a/1936865 */ export declare const bytesFor: (n: number) => Uint8Array; //# sourceMappingURL=numbers.d.ts.map