Created
April 2, 2025 14:01
-
-
Save nielsbom/b2ed057bfcb06d444bc3c68d245a1f1c to your computer and use it in GitHub Desktop.
TypeScript single line imports
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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