mirror of
https://github.com/juherr/kill-the-news.git
synced 2026-06-20 22:03:48 +00:00
chore: apply Prettier formatting to entire codebase
Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Vendored
+3
-3
@@ -1,8 +1,8 @@
|
||||
import { Env } from './index';
|
||||
import { Env } from "./index";
|
||||
|
||||
// Extend Hono's types to include our custom environment
|
||||
declare module 'hono' {
|
||||
declare module "hono" {
|
||||
interface ContextVariableMap {
|
||||
env: Env;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+7
-4
@@ -1,8 +1,11 @@
|
||||
// Extend mailparser types for Buffer in worker environment
|
||||
declare module 'buffer-polyfill' {
|
||||
declare module "buffer-polyfill" {
|
||||
global {
|
||||
var Buffer: {
|
||||
from(data: string, encoding?: string): {
|
||||
from(
|
||||
data: string,
|
||||
encoding?: string,
|
||||
): {
|
||||
toString(encoding?: string): string;
|
||||
};
|
||||
};
|
||||
@@ -10,8 +13,8 @@ declare module 'buffer-polyfill' {
|
||||
}
|
||||
|
||||
// Add missing atob declaration
|
||||
declare module 'atob-polyfill' {
|
||||
declare module "atob-polyfill" {
|
||||
global {
|
||||
function atob(data: string): string;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -1,4 +1,4 @@
|
||||
declare module 'rss' {
|
||||
declare module "rss" {
|
||||
interface RSSOptions {
|
||||
title: string;
|
||||
description: string;
|
||||
@@ -48,4 +48,4 @@ declare module 'rss' {
|
||||
}
|
||||
|
||||
export = RSS;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user