Socket
Socket
Sign inDemoInstall

@shopify/useful-types

Package Overview
Dependencies
Maintainers
13
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@shopify/useful-types

A few handy TypeScript types


Version published
Weekly downloads
101K
decreased by-23.16%
Maintainers
13
Weekly downloads
 
Created
Source

@shopify/useful-types

Build Status License: MIT npm version npm bundle size (minified + gzip)

A few handy TypeScript types.

Installation

$ yarn add @shopify/useful-types

Usage

The following type aliases are provided by this library:

  • ThenType<T>: When T is a promise, resolves to the type the promise will resolve to (Promise<infer U>). Otherwise, resolves to T. Useful when you may or may not have a promise and need to reference the underlying type.

    const value = 'foo';
    const promise = Promise.resolve(value);
    
    type V = ThenType<typeof value>; // string
    type P = ThenType<typeof promise>; // string
    
  • FirstArgument<T>: Resolves to the type of the first argument to the passed function. Useful for cases where you wish to extract the type of arguments without actually exporting the argument types, and is a nice complement to TypeScript’s built-in ReturnType.

    const func = (foo: Promise<any>) => foo.then(() => 'bar');
    type Arg = FirstArgument<typeof func>; // Promise<any>
    
  • ArrayElement<T>: When T is an array, resolves to the type contained within the array.

    type FooArray = (string | number)[];
    type Foo = ArrayElement<FooArray>; // string | number
    
  • Omit<T, K extends keyof T>: The opposite of TypeScript’s Pick type. Resolves to a new type that includes all keys in the original except those matching K.

    interface Obj {
      foo: string;
      bar: boolean;
      baz: number;
    }
    
    type SelectiveObj = Omit<Obj, 'foo' | 'bar'>; // {baz: number}
    
  • Props<T>: Extracts the prop type from a React component. This allows you to access property types without having to manually export/ import the type.

    function MyComponent({name}: {name: string}) {
      return <div>Hello, {name}!</div>;
    }
    
    class MyOtherComponent extends React.Component<{seconds: number}> {
      render() {
        return <div>{this.props.seconds} seconds left!</div>;
      }
    }
    
    type MyComponentProps = Props<typeof MyComponent>; // {name: string}
    type MyOtherComponentProps = Props<typeof MyOtherComponent>; // {seconds: number}
    
  • DeepPartial<T>: Recusively maps over all properties in a type and transforms them to be optional. Useful when you need to make optional all of the properties (and nested properties) of an existing type.

    interface Obj {
      foo: string;
      bar: {
        baz: boolean;
      };
    }
    
    type DeepPartialObj = DeepPartial<Obj>; // {foo?: string; bar?: { baz?: boolean }}
    

FAQs

Package last updated on 23 Apr 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc