UNPKG

lightswitch-js-sdk

Version:

light switch javascript sdk

9 lines (8 loc) 246 B
import { ILSUser } from './types'; declare class LSUser implements ILSUser { userId: string; properties: Map<string, string>; constructor(userId: string, properties?: object); getUserId(): string; } export default LSUser;