We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20e05f commit e57fc3eCopy full SHA for e57fc3e
src/instance/Cloudinary.ts
@@ -4,8 +4,7 @@ import {CloudinaryVideo} from "../assets/CloudinaryVideo.js";
4
5
6
class Cloudinary {
7
- CloudinaryImage: typeof CloudinaryImage;
8
- cloudinaryConfig: ICloudinaryConfigurations;
+ private cloudinaryConfig: ICloudinaryConfigurations;
9
10
constructor(cloudinaryConfig?: ICloudinaryConfigurations) {
11
if (cloudinaryConfig) {
@@ -26,6 +25,10 @@ class Cloudinary {
26
25
return this;
27
}
28
+ getConfig() {
29
+ return this.cloudinaryConfig;
30
+ }
31
+
32
extendConfig():void {
33
// Future implementation
34
0 commit comments