import * as $dara from '@darabonba/typescript'; import { PathConfig } from "./PathConfig"; export declare class RouteConfig extends $dara.Model { /** * @remarks * 路由表:自定义域名访问时的 PATH 到 Function 的映射列表。 * * @example * [] */ routes?: PathConfig[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }