diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 0000000..db7d313 --- /dev/null +++ b/dist/index.d.ts @@ -0,0 +1,17 @@ +import Router from "./router.js"; +import Tpl from "./template.js"; +import { Handler } from "./types.js"; +export { Router, Tpl }; +export default class Flummpress { + private server?; + router: Router; + tpl: Tpl; + middleware: Handler[]; + constructor(); + use(plugin: Router | Tpl | Handler): this; + private processPipeline; + listen(...args: any[]): this; + private parseRequest; + private readBody; + private createResponse; +} diff --git a/dist/router.d.ts b/dist/router.d.ts new file mode 100644 index 0000000..4f5f609 --- /dev/null +++ b/dist/router.d.ts @@ -0,0 +1,26 @@ +import Tpl from "./template.js"; +import { Handler } from "./types.js"; +export default class Router { + private routes; + private tpl?; + private mimes; + constructor(); + importRoutesFromPath(p: string, tpl?: Tpl | false): Promise; + group(basePath: string | RegExp, callback: (methods: any) => void): this; + private combinePaths; + use(obj: Router | Tpl): void; + get(path: string | RegExp, ...callback: Handler[]): this; + post(path: string | RegExp, ...callback: Handler[]): this; + head(path: string | RegExp, ...callback: Handler[]): this; + put(path: string | RegExp, ...callback: Handler[]): this; + delete(path: string | RegExp, ...callback: Handler[]): this; + patch(path: string | RegExp, ...callback: Handler[]): this; + private registerRoute; + getRoute(path: string, method: string): any; + private sortRoutes; + private readMimes; + static({ dir, route }: { + dir?: string; + route?: RegExp; + }): this; +} diff --git a/dist/template.d.ts b/dist/template.d.ts new file mode 100644 index 0000000..26c4a15 --- /dev/null +++ b/dist/template.d.ts @@ -0,0 +1,18 @@ +export default class Template { + private views; + private globals; + private cache; + private templates; + private debug; + constructor(); + setDebug(debug: boolean): void; + setViews(views: string): void; + setGlobals(globals: Record): void; + setCache(cache: boolean): void; + private readdir; + private getTemplate; + render(file: string, data?: Record, locals?: Record): string; + escape(str: string): string; + forEach(o: any, f: (value: any, key: string | number) => void): void; + getMtime(file: string): number; +} diff --git a/tsconfig.json b/tsconfig.json index aba885c..99ab017 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ "rootDir": "./src", "strict": true, "esModuleInterop": true, - "removeComments": true + "removeComments": true, + "declaration": true }, "include": ["src"], "exclude": ["node_modules"]