@types/fxn
TypeScript icon, indicating that this package has built-in type declarations

0.0.3 • Public • Published

Installation

npm install --save @types/fxn

Summary

This package contains type definitions for fxn (https://github.com/poly/fxn).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/fxn.

index.d.ts

/// <reference types="node"/>

export type HttpMethod = "GET" | "POST" | "PUT" | "DELETE" | "OPTIONS";

export interface HttpHeaders {
    [item: string]: string;
}

export abstract class Controller {
    protected _method: HttpMethod;
    protected _path: string;
    protected _requestHeaders: Object;
    protected _headers: Object;
    protected _status: number;
    protected _responder: Function;
    protected _securityPolicies: Object;
    protected params: any;

    constructor(path: string, method: string, requestHeaders: Object, params: Object, responder: Function);
    convertMethod(method: HttpMethod, id: number): string;
    run(): void;
    notImplemented(msg: string, details: Object): boolean;
    before(): void;
    after(): void;
    get(): void;
    put(): void;
    post(): void;
    del(): void;
    options(): void;
    index(): void;
    show(): void;
    update(): void;
    create(): void;
    destroy(): void;
    status(value: number): boolean;
    setHeaders(): HttpHeaders;
    setHeader(key: string, value: string): string;
    appendHeader(key: string, value: string): string;
    getHeader(key: string, value: string): string;
    code(code: number): number;
    getStatus(): number;
    render(data: Buffer | String | Object): void;
    allowOrigin(value: string): this;
    securityPolicy(directive: string, src: string): string;
    redirect(location: string): void;
}

export abstract class Daemon {
    constructor(string: string);
}

export abstract class Application {
    constructor(string: string);
    send: Function;
}

export abstract class Router {}
export abstract class Scheduler {}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: @types/node

Credits

These definitions were written by Adam Charron.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/fxn

Weekly Downloads

0

Version

0.0.3

License

MIT

Unpacked Size

5.83 kB

Total Files

5

Last publish

Collaborators

  • types