vue3-msal-plugin
Version:
Vue 3 plugin for integrating MSAL.js into your app, offering easy-to-use composables.
9 lines (8 loc) • 324 B
TypeScript
import type { AccountIdentifiers } from './types.ts';
/**
* Helper function to determine whether 2 arrays are equal
* Used to avoid unnecessary state updates
* @param arrayA
* @param arrayB
*/
export declare function accountArraysAreEqual(arrayA: Array<AccountIdentifiers>, arrayB: Array<AccountIdentifiers>): boolean;