From b6757715e35489e2cc480da9ef68e1bea224cf92 Mon Sep 17 00:00:00 2001 From: Flummi Date: Wed, 19 Mar 2025 12:57:19 +0100 Subject: [PATCH] Revert "-.-" This reverts commit 945832b6c28f5cbdb808d2b5168333bab4074c09. --- package.json | 1 - tsconfig.json | 5 +---- types/index.d.ts | 49 ------------------------------------------------ 3 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 types/index.d.ts diff --git a/package.json b/package.json index 899cb25..2d4c5fe 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "keywords": [], "author": "Flummi", "license": "ISC", - "types": "types/index.d.ts", "type": "module", "devDependencies": { "@types/node": "^22.13.10", diff --git a/tsconfig.json b/tsconfig.json index 4dbae6b..aba885c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,10 +7,7 @@ "rootDir": "./src", "strict": true, "esModuleInterop": true, - "removeComments": true, - "types": [ - "node" - ] + "removeComments": true }, "include": ["src"], "exclude": ["node_modules"] diff --git a/types/index.d.ts b/types/index.d.ts deleted file mode 100644 index 04d5adf..0000000 --- a/types/index.d.ts +++ /dev/null @@ -1,49 +0,0 @@ -import { Handler } from "../src/types.d.js"; - -declare class Flummpress { - constructor(); - router: Router; - tpl: Template; - middleware: Handler[]; - - use(plugin: Router | Template | Handler): this; - listen(...args: any[]): this; -} - -declare class Router { - importRoutesFromPath(p: string, tpl?: Template | false): Promise; - group(basePath: string | RegExp, callback: (methods: { - get: (path: string | RegExp, ...handlers: Handler[]) => void; - post: (path: string | RegExp, ...handlers: Handler[]) => void; - put: (path: string | RegExp, ...handlers: Handler[]) => void; - delete: (path: string | RegExp, ...handlers: Handler[]) => void; - patch: (path: string | RegExp, ...handlers: Handler[]) => void; - }) => void): this; - - use(obj: Router | Template): void; - - get(path: string | RegExp, ...handlers: Handler[]): this; - post(path: string | RegExp, ...handlers: Handler[]): this; - head(path: string | RegExp, ...handlers: Handler[]): this; - put(path: string | RegExp, ...handlers: Handler[]): this; - delete(path: string | RegExp, ...handlers: Handler[]): this; - patch(path: string | RegExp, ...handlers: Handler[]): this; - - static(options: { dir?: string; route?: RegExp }): this; - - getRoute(path: string, method: string): { path: string | RegExp; methods: { [method: string]: Handler[] } } | undefined; -} - -declare class Template { - setDebug(debug: boolean): void; - setViews(views: string): void; - setGlobals(globals: Record): void; - setCache(cache: boolean): void; - - render(file: string, data?: Record, locals?: Record): string; - escape(str: string): string; - getMtime(file: string): number; -} - -export { Flummpress, Router, Template }; -export default Flummpress;