0.1.0 • Published 2 years ago

is-interface v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

is-interface

Type Guard for interface

Install

npm install is-interface

Usage

import is from "@sindresorhus/is";
import { isInterface } from "is-interface";

declare const someObject: unknown;

if (
  isInterface(someObject, {
    foo: is.string,
    bar: is.number,
    baz: is.boolean,
  })
) {
  someObject;
  // const someObject: {
  //     foo: string;
  //     bar: number;
  //     baz: boolean;
  // }
}

Related

  • is - Type guards for any situation

LICENSE

MIT