@asoftwareworld/form-builder-pro
Version:
ASW Form Builder Pro helps you with rapid development and designed web forms which includes several controls. The key feature of Form Builder is to make your content attractive and effective. We can customize our control at run time and preview the same b
23 lines (22 loc) • 598 B
TypeScript
export declare class Base64Encode {
/**
* Returns URL Safe base64 encoded string from a plaintext string.
*/
static urlEncode(input: string): string;
/**
* Returns URL Safe base64 encoded string from an int8Array.
*/
static urlEncodeArr(inputArr: Uint8Array): string;
/**
* Returns base64 encoded string from plaintext string.
*/
static encode(input: string): string;
/**
* Base64 encode byte array
*/
private static base64EncArr;
/**
* Base64 string to array encoding helper
*/
private static uint6ToB64;
}