Files
memecoin-botV2/.pnpm-store/v10/files/d3/0d968b2c56674314484482d2e10ef9b345c3218d9a6134efd9795638583187b8e8632a8034a94aeb81b05aebed4dcb855865e27e273369437bfc155a81157b

24 lines
902 B
Plaintext

export {};
import * as buffer from "node:buffer";
type _Blob = typeof globalThis extends { onmessage: any } ? {} : buffer.Blob;
type _BlobPropertyBag = typeof globalThis extends { onmessage: any } ? {} : buffer.BlobPropertyBag;
type _File = typeof globalThis extends { onmessage: any } ? {} : buffer.File;
type _FilePropertyBag = typeof globalThis extends { onmessage: any } ? {} : buffer.FilePropertyBag;
declare global {
interface Blob extends _Blob {}
var Blob: typeof globalThis extends { onmessage: any; Blob: infer T } ? T : typeof buffer.Blob;
interface BlobPropertyBag extends _BlobPropertyBag {}
interface File extends _File {}
var File: typeof globalThis extends { onmessage: any; File: infer T } ? T : typeof buffer.File;
interface FilePropertyBag extends _FilePropertyBag {}
function atob(data: string): string;
function btoa(data: string): string;
}