Skip to content

Commit

Permalink
fix(types): use .js extension instead of .ts (#949)
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 authored Jan 5, 2024
1 parent 90da2c0 commit a00257a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/middleware/node/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Logger } from "../../createLogger.ts";
import type { Logger } from "../../createLogger.js";

export type MiddlewareOptions = {
path?: string;
Expand Down
4 changes: 2 additions & 2 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import type {
WebhookEventMap,
WebhookEventName,
} from "@octokit/webhooks-types";
import type { Logger } from "./createLogger.ts";
import type { emitterEventNames } from "./generated/webhook-names.ts";
import type { Logger } from "./createLogger.js";
import type { emitterEventNames } from "./generated/webhook-names.js";

export type EmitterWebhookEventName = (typeof emitterEventNames)[number];
export type EmitterWebhookEvent<
Expand Down

0 comments on commit a00257a

Please sign in to comment.