UNPKG

appsync-testing

Version:

![GitHub Actions Build (main)](https://img.shields.io/github/workflow/status/WealthWizardsEngineering/appsync-testing/Pipeline/main?logo=github) ![npm](https://img.shields.io/npm/v/appsync-testing?color=red&logo=npm)

14 lines (13 loc) 309 B
interface AppSyncError { message: string; errorType: string; data: object; errorInfo: object; } interface AppSync { result: object; error: AppSyncError; errors: AppSyncError[]; } export declare function render(fileName: string, inputContext?: object): Promise<AppSync>; export {};