Files
LayaNative2.0/Conch/source/domsupport/Base64.ts
T
2020-11-11 16:17:13 +08:00

9 lines
252 B
TypeScript

class WindowBase64{
atob:(encodedString: string)=>string;
btoa:(rawString: string)=> string;
constructor(){
this.atob=function(){return null;};
this.btoa=function(){return null;};
}
}
window["WindowBase64"]=WindowBase64;