@mobiage/homescreen
Version:
cp-mbg-homescreen
7 lines • 366 B
TypeScript
/*
Declaration files are how the Typescript compiler knows about the type information(or shape) of an object.
They're what make intellisense work and make Typescript know all about your code.
A wildcard module is declared below to allow third party libraries to be used in an app even if they don't
provide their own type declarations.
*/
declare module '*';