@re-shell/cli
Version:
Full-stack development platform uniting microservices and microfrontends. Build complete applications with .NET (ASP.NET Core Web API, Minimal API), Java (Spring Boot, Quarkus, Micronaut, Vert.x), Rust (Actix-Web, Warp, Rocket, Axum), Python (FastAPI, Dja
13 lines (12 loc) • 498 B
TypeScript
export declare function mark(name: string): void;
export declare function getStartupTime(): number;
export declare function getMarks(): {
name: string;
time: number;
delta: number;
}[];
export declare function defer(fn: () => Promise<void>): void;
export declare function getFromCache<T>(key: string): T | undefined;
export declare function setCache<T>(key: string, value: T): void;
export declare function isVersionRequest(): boolean;
export declare function isHelpRequest(): boolean;