UNPKG

@gabliam/express

Version:
23 lines (22 loc) 491 B
/** * Represent a custom router creator * * If you want a custom router use this const for create your router * * ## Sample * @Config() * class Conf { * @Bean(CUSTOM_ROUTER_CREATOR) * custom() { * return () => * e.Router({ * caseSensitive: true * }); * } * } */ export declare const CUSTOM_ROUTER_CREATOR: unique symbol; export declare const EXPRESS_PLUGIN_CONFIG: unique symbol; export declare const METADATA_KEY: { expressInterceptor: string; };