You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
initializeAdapterInstance function returns void, instead of the specified adapter's type.
/**
Initializes a single adapter implementation. Initialization means either newing a instance of the
specified interface and then calling "initialize" on it or simply calling "initialize" on the instance
if it already exists.
@param interfaceName {String} The name of the interface to which the adapter to initialize belongs.
@param adapterName {String} - The name of a previously registered adapter to initialize.
@param isDefault=true {Boolean} - Whether to make this the default "adapter" for this interface.
@return {an instance of the specified adapter}
**/
export function initializeAdapterInstance(interfaceName: string, adapterName: string, isDefault?: boolean): void;
Declarations for adapter types (ajax, dataService, modelLibrary, uriBuilder) are missing.
breeze-client: 1.6.2
Not sure how to generate these declarations but if we can discuss about the details, I could try to help.
The text was updated successfully, but these errors were encountered:
Any hopes for this getting fixed soon? (I Hope that ) this is a simple issue that the .d.ts file needs to be regenerated properly.
Due to this issue, I end up including breeze-client twice in a strict webpack + typescript world.. once normally and once via webpack imports-loader doubling my download size.
void
, instead of the specified adapter's type.breeze-client: 1.6.2
Not sure how to generate these declarations but if we can discuss about the details, I could try to help.
The text was updated successfully, but these errors were encountered: