improve README

This commit is contained in:
2016-11-02 22:55:17 +01:00
parent bb7caa36ea
commit 76c590b045
6 changed files with 31 additions and 14 deletions

View File

@ -19,7 +19,7 @@ export declare class Base64 {
/**
* the base64uri encoded version of the original string
*/
readonly base64StringUri: any;
readonly base64UriString: any;
}
export declare let base64: {
encode: (stringArg: string) => any;

View File

@ -31,7 +31,7 @@ class Base64 {
/**
* the base64uri encoded version of the original string
*/
get base64StringUri() {
get base64UriString() {
return exports.base64.encodeUri(this.refString);
}
}