outers
Version:
outers - a all in one package for your day to day use
11 lines (10 loc) • 627 B
TypeScript
import { WaitInterface, ConsoleInterface, ServeInterface, MiddlewareInterface, ClassBasedInterface, FunctionBasedInterface, RetryInterface } from "./Interfaces/outers.interface";
import { StatusCode } from "../StatusCode/Code";
export declare const Console: ConsoleInterface;
export declare const StatusCodes: typeof StatusCode;
export declare const Wait: WaitInterface;
export declare const Retry: RetryInterface;
export declare const Serve: ServeInterface;
export declare const Middleware: MiddlewareInterface;
export declare const ClassBased: ClassBasedInterface;
export declare const FunctionBased: FunctionBasedInterface;