gypsum
Version:
Simple and easy lightweight typescript server side framework on Node.js.
17 lines (16 loc) • 429 B
TypeScript
import { Model } from "../models";
import { Context } from "../context";
export declare class Apps extends Model {
getApp(name: string, ctx?: Context): Promise<any>;
getApps(apps: string[]): Promise<{
data: any[];
}>;
getAllApps(): Promise<{
data: {
name: string;
apiType: any;
namespaces: any;
models: any[];
}[];
}>;
}