/** * @author songxiwen * @date 2020/10/15 14:06 */ import { Model } from 'mongoose'; import { BaseService } from '../../../base/base.service'; import { IconStyle } from '../model/icon.style'; import { IconStyleType } from './type/icon.type'; export declare class IconStyleService extends BaseService { protected readonly model: Model; constructor(model: Model); getIconStyleMap(): Promise<{ [key: string]: IconStyleType; }>; }