File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change 27
27
28
28
## Importing 🦐
29
29
30
+ ### Javascript 💛
31
+
30
32
- By The Beginning You Have To Import Library After Installation,<br />
31
33
You Can Import Unminified Version
32
34
37
39
- Or You Can Import Minified Version (recommended)
38
40
39
41
``` javascript
42
+ import * from " functionality.min.ts" ;
43
+ ```
44
+
45
+ ### TypeScript 💙
46
+
47
+ - By The Beginning You Have To Import Library After Installation,<br />
48
+ You Can Import Unminified Version
49
+
50
+ ``` typescript
51
+ import * from " functionality.ts" ;
52
+ ```
53
+
54
+ - Or You Can Import Minified Version (recommended)
55
+
56
+ ``` typescript
40
57
import * from " functionality.min.js" ;
41
58
```
59
+
42
60
43
61
- Since You Have Downloaded And Imported The Library You Can Use It As Following ...
44
62
You can’t perform that action at this time.
0 commit comments