@tmlmobilidade/types
Version:
12 lines (11 loc) • 340 B
TypeScript
export interface AbbreviationRule {
enabled: boolean;
phrase: string;
replacement: string;
}
/**
* These are the rules for abbreviating stop names.
* They follow the CTT National Postal Service guidelines,
* with some additional customizations for TML.
*/
export declare const StopNameAbbreviationRules: AbbreviationRule[];