UNPKG

@geekbears/gb-mongoose-keywords-plugin

Version:
21 lines (20 loc) 538 B
import { IKeywordPopulateMap } from './keyword-populate-map.interface'; export interface IKeywordOptions { paths?: string[]; virtuals?: IKeywordPopulateMap; omit?: string[]; logging?: boolean; onNew?: boolean; onUpdate?: boolean; } /** * Options returned by {@link validateOptions}, with defaults applied for every field. */ export interface IValidatedKeywordOptions { paths: string[]; virtuals: IKeywordPopulateMap; omit: string[]; logging: boolean; onNew: boolean; onUpdate: boolean; }