// (C) 2007-2019 GoodData Corporation import { ISchema } from "../model/Schema"; import { ensureItems } from "../helpers/objects"; import { ISchemaAfmExecution } from "../model/SchemaAfmExecution"; export function createAfmExecutions(schema: ISchema): ISchemaAfmExecution[] { return ensureItems(schema.afmExecutions); }