@tsed/common
Version:
A TypeScript Framework on top of Express
17 lines (16 loc) • 455 B
TypeScript
declare global {
namespace TsED {
interface StaticsOptions {
root: string;
[key: string]: any;
}
}
}
export interface PlatformStaticsOptions extends TsED.StaticsOptions {
root: string;
[key: string]: any;
}
export declare type PathOrStaticsOptions = string | PlatformStaticsOptions;
export interface PlatformStaticsSettings {
[endpoint: string]: PathOrStaticsOptions | PathOrStaticsOptions[];
}