UNPKG

angular-mentions

Version:
18 lines (17 loc) 496 B
export interface MentionConfig extends Mentions { mentions?: Mentions[]; disableStyle?: boolean; } export interface Mentions { items?: any[]; triggerChar?: string; labelKey?: string; maxItems?: number; disableSort?: boolean; disableSearch?: boolean; dropUp?: boolean; allowSpace?: boolean; returnTrigger?: boolean; mentionSelect?: (item: any, triggerChar?: string) => (string); mentionFilter?: (searchString: string, items?: any) => (any[]); }