WTF not
All checks were successful
Push to main / Reset-Version-Tag (push) Successful in 4s

This commit is contained in:
Bryce Thorup
2024-09-03 10:27:06 -06:00
parent 42ba615a9d
commit 0cc479fc6d
127 changed files with 66554 additions and 0 deletions

15
node_modules/data-uri-to-buffer/dist/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,15 @@
/// <reference types="node" />
export interface MimeBuffer extends Buffer {
type: string;
typeFull: string;
charset: string;
}
/**
* Returns a `Buffer` instance from the given data URI `uri`.
*
* @param {String} uri Data URI to turn into a Buffer instance
* @returns {Buffer} Buffer instance from Data URI
* @api public
*/
export declare function dataUriToBuffer(uri: string): MimeBuffer;
export default dataUriToBuffer;