fix: don't use global interface typedefs

This commit is contained in:
shiftinv 2022-09-03 16:59:34 +02:00
parent 32d7b66dad
commit 28a478f12d
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,7 @@
import { http, log } from "../deps.ts";
import { verify } from "./crypto.ts";
import filterWebhook from "./filter.ts";
import { UrlConfig } from "./types.d.ts";
import * as util from "./util.ts";
export default async function handle(req: Request): Promise<Response> {

2
lib/types.d.ts vendored
View File

@ -1,4 +1,4 @@
interface UrlConfig {
export interface UrlConfig {
allowBranches?: string[];
hideTags?: boolean;
}