diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-09-17 18:26:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-17 18:26:23 +0100 |
commit | a14e9f55b4efc39689e1cc76b44bc6c1be51efa5 (patch) | |
tree | 0a62a88e21eb6647157fc1f948008793b67bf0e9 /ext/node/polyfills/https.ts | |
parent | 915b73571c40601b7f79fa4ee0f3035982e23b7f (diff) |
feat(fmt): sort type-only named import/exports last (#25690)
Closes #22583
Diffstat (limited to 'ext/node/polyfills/https.ts')
-rw-r--r-- | ext/node/polyfills/https.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/https.ts b/ext/node/polyfills/https.ts index f60c5e471..c95db6aa2 100644 --- a/ext/node/polyfills/https.ts +++ b/ext/node/polyfills/https.ts @@ -13,7 +13,7 @@ import { } from "node:http"; import { Agent as HttpAgent } from "node:_http_agent"; import { createHttpClient } from "ext:deno_fetch/22_http_client.js"; -import { type ServerHandler, ServerImpl as HttpServer } from "node:http"; +import { ServerImpl as HttpServer, type ServerHandler } from "node:http"; import { validateObject } from "ext:deno_node/internal/validators.mjs"; import { kEmptyObject } from "ext:deno_node/internal/util.mjs"; import { Buffer } from "node:buffer"; |