Files
thrilltrack-explorer/supabase/functions/deno.d.ts
gpt-engineer-app[bot] 1333a5e8c8 Fix Novu API import path
2025-10-12 15:41:36 +00:00

37 lines
1.1 KiB
TypeScript

/// <reference lib="deno.ns" />
declare module 'https://deno.land/std@*/http/server.ts' {
export function serve(handler: (req: Request) => Response | Promise<Response>, options?: { port?: number }): void;
}
declare module 'https://deno.land/std@0.168.0/http/server.ts' {
export function serve(handler: (req: Request) => Response | Promise<Response>, options?: { port?: number }): void;
}
declare module 'https://deno.land/std@0.190.0/http/server.ts' {
export function serve(handler: (req: Request) => Response | Promise<Response>, options?: { port?: number }): void;
}
declare module 'https://esm.sh/@supabase/supabase-js@2' {
export * from '@supabase/supabase-js';
}
declare module 'https://esm.sh/@supabase/supabase-js@2.57.4' {
export * from '@supabase/supabase-js';
}
declare module 'npm:@novu/api@0.0.7' {
export * from '@novu/api';
}
declare namespace Deno {
export namespace env {
export function get(key: string): string | undefined;
}
export function serve(
handler: (req: Request) => Response | Promise<Response>,
options?: { port?: number; hostname?: string }
): void;
}