We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0924144 commit 85ce0bdCopy full SHA for 85ce0bd
src/declarations.d.ts
@@ -0,0 +1,11 @@
1
+/*
2
+ Declaration files are how the Typescript compiler knows about the type information(or shape) of an object.
3
+ They're what make intellisense work and make Typescript know all about your code.
4
+ A wildcard module is declared below to allow third party libraries to be used in an app even if they don't
5
+ provide their own type declarations.
6
+ To learn more about using third party libraries in an Ionic app, check out the docs here:
7
+ http://ionicframework.com/docs/v2/resources/third-party-libs/
8
+ For more info on type definition files, check out the Typescript docs here:
9
+ https://www.typescriptlang.org/docs/handbook/declaration-files/introduction.html
10
+*/
11
+declare module '*';
0 commit comments