15 lines
411 B
TypeScript
15 lines
411 B
TypeScript
import imageInputFileToBase64 from "./imageInputFileToBase64";
|
|
import imageInputToBase64 from "./imageInputToBase64";
|
|
/**
|
|
* ==========================
|
|
* Main Export
|
|
* ==========================
|
|
*/
|
|
declare const datasquirelClient: {
|
|
media: {
|
|
imageInputToBase64: typeof imageInputToBase64;
|
|
imageInputFileToBase64: typeof imageInputFileToBase64;
|
|
};
|
|
};
|
|
export default datasquirelClient;
|