shyft
Version:
Model driven GraphQL API framework
14 lines (13 loc) • 450 B
TypeScript
import { Configuration } from '../engine/configuration/Configuration';
import { Entity } from '../engine/entity/Entity';
import { Schema } from '../engine/schema/Schema';
import { Action } from '..';
declare type GenerateTestSchemaSetup = {
entities?: Entity[];
actions?: Action[];
};
export declare const generateTestSchema: (setup?: GenerateTestSchemaSetup) => Promise<{
configuration: Configuration;
schema: Schema;
}>;
export {};