/** * Author: Charuka Rathnayaka * Email: CharukaR@99x.io **/ export declare class GeneralDataInjector { /** * injectData * This function injects data into the schema based on the schema keys. * @param data * @param schema * @returns { remainingDataGeneral, injectedSchemaGeneral } * remainingDataGeneral - The data that is not injected into the schema. * injectedSchemaGeneral - The schema with the injected data. * **/ injectData(data: { [key: string]: any; }, schema: { [key: string]: any; }): { remainingDataGeneral: { [key: string]: any; }; injectedSchemaGeneral: { [key: string]: any; }; }; }