Allowed to dynamically determine how short URL suggestions are calculated

This commit is contained in:
Alejandro Celaya
2021-08-15 18:13:13 +02:00
parent 9f02bc6496
commit 322396a366
5 changed files with 102 additions and 35 deletions

View File

@@ -17,12 +17,11 @@ interface RealTimeUpdatesSettings {
interval?: number;
}
type TagFilteringMode = 'startsWith' | 'includes';
export type TagFilteringMode = 'startsWith' | 'includes';
export interface ShortUrlCreationSettings {
validateUrls: boolean;
tagFilteringMode?: TagFilteringMode;
maxTagSuggestions?: number;
tagFilteringMode?: TagFilteringMode
}
export interface UiSettings {