/** * Merge driver 2 into driver 1 * * It should take care of merging Internal methods into the target'shidden internal driver * (which sits under the [INTERNAL_DRIVER] property). Currently not supported. */ export function mergeDrivers(target: any, source: any): any; /** * Flatten driver by spreading all internal methods, * and removing the INTERNAL_DRIVER property. * Does not mutate the given driver. */ export function flattenInternalDriver(driver: any): any; /** * Symbol for accessing driver methods which are internal * (we don't want to expose them to WSR consumers) */ export const INTERNAL_DRIVER_SYMBOL: unique symbol; //# sourceMappingURL=private-drivers.d.ts.map