initial commit
This commit is contained in:
commit
27325ea5f1
2537 changed files with 328078 additions and 0 deletions
11
node_modules/pdf-lib/cjs/utils/base64.d.ts
generated
vendored
Normal file
11
node_modules/pdf-lib/cjs/utils/base64.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
export declare const encodeToBase64: (bytes: Uint8Array) => string;
|
||||
export declare const decodeFromBase64: (base64: string) => Uint8Array;
|
||||
/**
|
||||
* If the `dataUri` input is a data URI, then the data URI prefix must not be
|
||||
* longer than 100 characters, or this function will fail to decode it.
|
||||
*
|
||||
* @param dataUri a base64 data URI or plain base64 string
|
||||
* @returns a Uint8Array containing the decoded input
|
||||
*/
|
||||
export declare const decodeFromBase64DataUri: (dataUri: string) => Uint8Array;
|
||||
//# sourceMappingURL=base64.d.ts.map
|
||||
Loading…
Add table
Add a link
Reference in a new issue