From 630e2bb16cd255b19ebad7afd8b14bfdcf67b618 Mon Sep 17 00:00:00 2001 From: Evan Bacon Date: Wed, 14 Apr 2021 17:44:02 -0600 Subject: [PATCH] Added d.ts files (#167) --- .npmignore | 3 +++ AntDesign.d.ts | 2 ++ Entypo.d.ts | 2 ++ EvilIcons.d.ts | 2 ++ Feather.d.ts | 2 ++ FontAwesome.d.ts | 2 ++ FontAwesome5.d.ts | 2 ++ Fontisto.d.ts | 2 ++ Foundation.d.ts | 2 ++ Ionicons.d.ts | 2 ++ MaterialCommunityIcons.d.ts | 2 ++ MaterialIcons.d.ts | 2 ++ Octicons.d.ts | 2 ++ SimpleLineIcons.d.ts | 2 ++ Zocial.d.ts | 2 ++ createIconSet.d.ts | 2 ++ createIconSetFromFontello.d.ts | 2 ++ createIconSetFromIcoMoon.d.ts | 2 ++ createMultiStyleIconSet.d.ts | 2 ++ 19 files changed, 39 insertions(+) create mode 100644 AntDesign.d.ts create mode 100644 Entypo.d.ts create mode 100644 EvilIcons.d.ts create mode 100644 Feather.d.ts create mode 100644 FontAwesome.d.ts create mode 100644 FontAwesome5.d.ts create mode 100644 Fontisto.d.ts create mode 100644 Foundation.d.ts create mode 100644 Ionicons.d.ts create mode 100644 MaterialCommunityIcons.d.ts create mode 100644 MaterialIcons.d.ts create mode 100644 Octicons.d.ts create mode 100644 SimpleLineIcons.d.ts create mode 100644 Zocial.d.ts create mode 100644 createIconSet.d.ts create mode 100644 createIconSetFromFontello.d.ts create mode 100644 createIconSetFromIcoMoon.d.ts create mode 100644 createMultiStyleIconSet.d.ts diff --git a/.npmignore b/.npmignore index 29fe17b..b6bae17 100644 --- a/.npmignore +++ b/.npmignore @@ -1,4 +1,7 @@ // @generated by expo-module-scripts babel.config.js +babel.config.build.js website src +website-screenshot.png +tsconfig.json \ No newline at end of file diff --git a/AntDesign.d.ts b/AntDesign.d.ts new file mode 100644 index 0000000..73318c8 --- /dev/null +++ b/AntDesign.d.ts @@ -0,0 +1,2 @@ +import AntDesign from "./build/AntDesign"; +export default AntDesign; diff --git a/Entypo.d.ts b/Entypo.d.ts new file mode 100644 index 0000000..e7e01f3 --- /dev/null +++ b/Entypo.d.ts @@ -0,0 +1,2 @@ +import Entypo from './build/Entypo'; +export default Entypo; diff --git a/EvilIcons.d.ts b/EvilIcons.d.ts new file mode 100644 index 0000000..66c63e8 --- /dev/null +++ b/EvilIcons.d.ts @@ -0,0 +1,2 @@ +import EvilIcons from './build/EvilIcons'; +export default EvilIcons; diff --git a/Feather.d.ts b/Feather.d.ts new file mode 100644 index 0000000..0eb9581 --- /dev/null +++ b/Feather.d.ts @@ -0,0 +1,2 @@ +import Feather from './build/Feather'; +export default Feather; diff --git a/FontAwesome.d.ts b/FontAwesome.d.ts new file mode 100644 index 0000000..215df1f --- /dev/null +++ b/FontAwesome.d.ts @@ -0,0 +1,2 @@ +import FontAwesome from './build/FontAwesome'; +export default FontAwesome; diff --git a/FontAwesome5.d.ts b/FontAwesome5.d.ts new file mode 100644 index 0000000..69568ae --- /dev/null +++ b/FontAwesome5.d.ts @@ -0,0 +1,2 @@ +import FontAwesome5 from './build/FontAwesome5'; +export default FontAwesome5; diff --git a/Fontisto.d.ts b/Fontisto.d.ts new file mode 100644 index 0000000..68415e2 --- /dev/null +++ b/Fontisto.d.ts @@ -0,0 +1,2 @@ +import Fontisto from "./build/Fontisto"; +export default Fontisto; diff --git a/Foundation.d.ts b/Foundation.d.ts new file mode 100644 index 0000000..85724ca --- /dev/null +++ b/Foundation.d.ts @@ -0,0 +1,2 @@ +import Foundation from './build/Foundation'; +export default Foundation; diff --git a/Ionicons.d.ts b/Ionicons.d.ts new file mode 100644 index 0000000..936b4c6 --- /dev/null +++ b/Ionicons.d.ts @@ -0,0 +1,2 @@ +import Ionicons from './build/Ionicons'; +export default Ionicons; diff --git a/MaterialCommunityIcons.d.ts b/MaterialCommunityIcons.d.ts new file mode 100644 index 0000000..ec39b0c --- /dev/null +++ b/MaterialCommunityIcons.d.ts @@ -0,0 +1,2 @@ +import MaterialCommunityIcons from './build/MaterialCommunityIcons'; +export default MaterialCommunityIcons; diff --git a/MaterialIcons.d.ts b/MaterialIcons.d.ts new file mode 100644 index 0000000..42b58ce --- /dev/null +++ b/MaterialIcons.d.ts @@ -0,0 +1,2 @@ +import MaterialIcons from './build/MaterialIcons'; +export default MaterialIcons; diff --git a/Octicons.d.ts b/Octicons.d.ts new file mode 100644 index 0000000..0b1ec33 --- /dev/null +++ b/Octicons.d.ts @@ -0,0 +1,2 @@ +import Octicons from './build/Octicons'; +export default Octicons; diff --git a/SimpleLineIcons.d.ts b/SimpleLineIcons.d.ts new file mode 100644 index 0000000..7c89841 --- /dev/null +++ b/SimpleLineIcons.d.ts @@ -0,0 +1,2 @@ +import SimpleLineIcons from './build/SimpleLineIcons'; +export default SimpleLineIcons; diff --git a/Zocial.d.ts b/Zocial.d.ts new file mode 100644 index 0000000..bc6c9a1 --- /dev/null +++ b/Zocial.d.ts @@ -0,0 +1,2 @@ +import Zocial from './build/Zocial'; +export default Zocial; diff --git a/createIconSet.d.ts b/createIconSet.d.ts new file mode 100644 index 0000000..36aebd4 --- /dev/null +++ b/createIconSet.d.ts @@ -0,0 +1,2 @@ +import createIconSet from './build/createIconSet'; +export default createIconSet; diff --git a/createIconSetFromFontello.d.ts b/createIconSetFromFontello.d.ts new file mode 100644 index 0000000..f84abee --- /dev/null +++ b/createIconSetFromFontello.d.ts @@ -0,0 +1,2 @@ +import createIconSetFromFontello from './build/createIconSetFromFontello'; +export default createIconSetFromFontello; diff --git a/createIconSetFromIcoMoon.d.ts b/createIconSetFromIcoMoon.d.ts new file mode 100644 index 0000000..a20a39f --- /dev/null +++ b/createIconSetFromIcoMoon.d.ts @@ -0,0 +1,2 @@ +import createIconSetFromIcoMoon from './build/createIconSetFromIcoMoon'; +export default createIconSetFromIcoMoon; diff --git a/createMultiStyleIconSet.d.ts b/createMultiStyleIconSet.d.ts new file mode 100644 index 0000000..54709e2 --- /dev/null +++ b/createMultiStyleIconSet.d.ts @@ -0,0 +1,2 @@ +import createMultiStyleIconSet from './build/createMultiStyleIconSet'; +export default createMultiStyleIconSet;