import type { Class } from '@travetto/runtime'; import type { ModelStorageSupport, ModelType } from '@travetto/model'; export class ModelExportUtil { static async run(provider: ModelStorageSupport, models: Class[]): Promise { for (const model of models) { console.log(await provider.exportModel!(model)); } } }