bpms_site/.svn/pristine/45/454f5562c659267c5d3183534ec7af8c566b3ad2.svn-base
2025-11-02 16:38:49 +03:30

16 lines
571 B
Plaintext

import { RouteKind } from '../route-kind';
import { RouteDefinition } from './route-definition';
export interface LocaleRouteDefinition<K extends RouteKind = RouteKind> extends RouteDefinition<K> {
/**
* When defined it means that this route is locale aware. When undefined,
* it means no special handling has to occur to process locales.
*/
i18n?: {
/**
* Describes the locale for the route. If this is undefined, then it
* indicates that this route can handle _any_ locale.
*/
locale?: string;
};
}