diff --git a/types/htmlbars-inline-precompile/htmlbars-inline-precompile-tests.ts b/types/htmlbars-inline-precompile/htmlbars-inline-precompile-tests.ts
new file mode 100644
index 0000000000..1fa13cd72f
--- /dev/null
+++ b/types/htmlbars-inline-precompile/htmlbars-inline-precompile-tests.ts
@@ -0,0 +1,3 @@
+import hbs from 'htmlbars-inline-precompile';
+
+hbs`this is allowed`;
diff --git a/types/htmlbars-inline-precompile/index.d.ts b/types/htmlbars-inline-precompile/index.d.ts
new file mode 100644
index 0000000000..f8bf17f3ea
--- /dev/null
+++ b/types/htmlbars-inline-precompile/index.d.ts
@@ -0,0 +1,13 @@
+// Type definitions for htmlbars-inline-precompile 1.0
+// Project: ember-cli-htmlbars-inline-precompile
+// Definitions by: Chris Krycho
+// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
+
+// This is a bit of a funky one: it's from a [Babel plugin], but is exported for
+// Ember applications as the module `"htmlbars-incline-precompile"`. It acts
+// like a tagged string from the perspective of consumers, but is actually an
+// AST transformation which generates a function as its output.
+//
+// [Babel plugin]: https://github.com/ember-cli/babel-plugin-htmlbars-inline-precompile#babel-plugin-htmlbars-inline-precompile-
+
+export default function hbs(tagged: TemplateStringsArray): () => {};
diff --git a/types/htmlbars-inline-precompile/tsconfig.json b/types/htmlbars-inline-precompile/tsconfig.json
new file mode 100644
index 0000000000..32ad3d22fb
--- /dev/null
+++ b/types/htmlbars-inline-precompile/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "compilerOptions": {
+ "module": "commonjs",
+ "lib": [
+ "es6"
+ ],
+ "noImplicitAny": true,
+ "noImplicitThis": true,
+ "strictNullChecks": true,
+ "baseUrl": "../",
+ "typeRoots": [
+ "../"
+ ],
+ "types": [],
+ "noEmit": true,
+ "forceConsistentCasingInFileNames": true
+ },
+ "files": [
+ "index.d.ts",
+ "htmlbars-inline-precompile-tests.ts"
+ ]
+}
diff --git a/types/htmlbars-inline-precompile/tslint.json b/types/htmlbars-inline-precompile/tslint.json
new file mode 100644
index 0000000000..3db14f85ea
--- /dev/null
+++ b/types/htmlbars-inline-precompile/tslint.json
@@ -0,0 +1 @@
+{ "extends": "dtslint/dt.json" }