diff --git a/seamless-immutable/seamless-immutable-tests.ts b/seamless-immutable/seamless-immutable-tests.ts
new file mode 100644
index 00000000000000..f250ea0a0cd1f2
--- /dev/null
+++ b/seamless-immutable/seamless-immutable-tests.ts
@@ -0,0 +1,52 @@
+///
+import SI = require("seamless-immutable");
+
+// Immutable instance method test
+const isImmutable: boolean = SI.isImmutable(SI.from([0, 2]));
+const error: Error = SI.ImmutableError("error");
+
+// Immutable Array tests
+const siArray: SI.ImmutableArray = SI.from([0, 1, 2]);
+
+const mutableArray: Array = siArray.asMutable();
+const mutableArray2: Array = siArray.asMutable({ deep: true });
+const arrayToObject: SI.ImmutableObject = siArray.asObject((value: number) =>
+ [value.toString(), value]
+);
+const flatMappedArray: SI.ImmutableArray = siArray.flatMap((value: number) =>
+ [value, value]
+);
+
+// Immutable Object tests
+interface User {
+ firstName: string;
+ lastName: string;
+};
+
+interface Address {
+ line1: string;
+}
+
+interface ExtendedUser extends User {
+ address: Address;
+}
+
+const siObject: SI.ImmutableObject = SI.from({
+ firstName: "Mike",
+ lastName: "test"
+});
+const extUser: SI.ImmutableObject = siObject.set("address", {
+ line1: "test"
+});
+
+const updatedAddress: SI.ImmutableObject = extUser.setIn(["address", "line1"], "test2");
+const mutableUser: ExtendedUser = updatedAddress.asMutable();
+const mutableUser2: ExtendedUser = updatedAddress.asMutable({ deep: true });
+const mergedUser: SI.ImmutableObject = siObject.merge({ lastName: "hello" });
+const updatedUser: SI.ImmutableObject = extUser.update("firstName", (firstName): string =>
+ firstName + "hehe"
+);
+const updatedInUser: SI.ImmutableObject = extUser.updateIn(["address", "line1"], (line): string =>
+ line + "new address"
+);
+const userWithoutAddress: SI.ImmutableObject = extUser.without("address");
diff --git a/seamless-immutable/seamless-immutable.d.ts b/seamless-immutable/seamless-immutable.d.ts
new file mode 100644
index 00000000000000..44f049eb76e1a5
--- /dev/null
+++ b/seamless-immutable/seamless-immutable.d.ts
@@ -0,0 +1,65 @@
+// Type definitions for Seamless-immutable 6.1.3
+// Project: https://github.com/rtfeldman/seamless-immutable
+// Definitions by: alex3165
+// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
+
+// This project is licensed under the MIT license.
+// Copyrights are respective of each contributor listed at the beginning of each definition file.
+
+// Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
+
+// The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
+
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+declare namespace SeamlessImmutable {
+ interface MergeConfig {
+ deep?: boolean;
+ merger?: Function;
+ }
+
+ interface Options {
+ prototype?: any;
+ }
+
+ interface AsMutableOptions {
+ deep: boolean;
+ }
+
+ export interface ImmutableObject {
+ set(property: string, value: any): ImmutableObject;
+ setIn(propertyPath: Array, value: any): ImmutableObject;
+
+ asMutable(): T;
+ asMutable(opts: AsMutableOptions): T;
+
+ merge(part: any, config?: MergeConfig): ImmutableObject;
+
+ update(property: string, updaterFunction: (value: any, ...additionalParamters: any[]) => any, ...additionalArguments: any[]): ImmutableObject;
+ updateIn(propertyPath: Array, updaterFunction: (value: any, ...additionalParamters: any[]) => any, ...additionalArguments: any[]): ImmutableObject;
+
+ without(property: string): ImmutableObject;
+ without(...properties: string[]): ImmutableObject;
+ without(filter: (value: any, key: string) => boolean): ImmutableObject;
+ }
+
+ export interface ImmutableArray {
+ asMutable(): Array;
+ asMutable(opts: AsMutableOptions): Array;
+ asObject(toKeyValue: (item: T) => Array): ImmutableObject;
+ flatMap(mapFunction: (item: T) => Array): ImmutableArray;
+ }
+
+ // an immutable object is both of Type T (i.e., looks like a normal T) and of type Immutable
+ export type Immutable = T & (ImmutableObject | ImmutableArray);
+
+ export function from(obj: Array, options?: Options): Array & ImmutableArray;
+ export function from(obj: T, options?: Options): T & ImmutableObject;
+
+ export function isImmutable(target: any): boolean;
+ export function ImmutableError(message: string): Error;
+}
+
+declare module "seamless-immutable" {
+ export = SeamlessImmutable;
+}