UNPKG

@wppconnect-team/wppconnect

Version:

WPPConnect is an open source project developed by the JavaScript community with the aim of exporting functions from WhatsApp Web to the node, which can be used to support the creation of any interaction, such as customer service, media sending, intelligen

8 lines (7 loc) 323 B
import { TokenStore } from './types'; /** * Check and validate if the object implements the TokenStore interface * @param object Object to check that implements the TokenStore interface * @returns true if the object is a valid else false */ export declare function isValidTokenStore(object: any): object is TokenStore;