import { IDestroyable } from '../../common'; import { GraphicOption } from '../../interface/file'; import { IModelSource } from './model.source'; export interface IModelSourceManager extends IDestroyable { getModelSource(graphicOption: GraphicOption): IModelSource; }