Skip to content

Commit

Permalink
fix: ignore possibly unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
spirius committed Nov 2, 2024
1 parent 6298efe commit bf5f2ed
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@cloudventure/sdf",
"description": "Serverless Development Framework",
"version": "0.2.10",
"version": "0.2.11",
"author": "Vahe Sahakyan <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
Expand Down
3 changes: 3 additions & 0 deletions src/bundler/language/typescript/http-api/client.ts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import {
OperationRequestDefaultMediaType,
} from "@cloudventure/sdf/http-api/runtime/client/HttpApiClient"

// @ts-ignore
type _ = OperationRequestDefaultMediaType

import { Document } from "@cloudventure/sdf/http-api/openapi/Document"
import { BundledDocument } from "@cloudventure/sdf/http-api/openapi/types"
import { dereference } from "@cloudventure/sdf/http-api/openapi/utils"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ import {
ConstructResponseBody,
} from "@cloudventure/sdf/http-api/runtime/server/HttpApiServer"

// @ts-ignore
type _ = ConstructResponseBody

import * as Responses from "@cloudventure/sdf/http-api/runtime/common/ApiResponse"

import { Operation } from "@cloudventure/sdf/http-api/openapi/Operation"
Expand Down

0 comments on commit bf5f2ed

Please sign in to comment.