Skip to content

Instantly share code, notes, and snippets.

@nielsbom
Created April 2, 2025 14:01
Show Gist options
  • Save nielsbom/b2ed057bfcb06d444bc3c68d245a1f1c to your computer and use it in GitHub Desktop.
Save nielsbom/b2ed057bfcb06d444bc3c68d245a1f1c to your computer and use it in GitHub Desktop.
TypeScript single line imports
import { HttpStatus, Injectable } from '@nestjs/common';
// vs
import { HttpStatus} from '@nestjs/common';
import { Injectable } from '@nestjs/common';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment