@azure/msal-node-extensions
Version:
 
11 lines • 377 B
TypeScript
/**
* Options for CrossPlatform lock.
*
* retryNumber: Numbers of times we should try to acquire a lock. Defaults to 500.
* retryDelay: Time to wait before trying to retry a lock acquisition. Defaults to 100 ms.
*/
export type CrossPlatformLockOptions = {
retryNumber: number;
retryDelay: number;
};
//# sourceMappingURL=CrossPlatformLockOptions.d.ts.map