unleash-client
Version:
Unleash Client for Node
14 lines • 388 B
TypeScript
export interface Properties {
[key: string]: string | undefined | number;
}
export interface Context {
[key: string]: string | Date | undefined | number | Properties;
currentTime?: Date;
userId?: string;
sessionId?: string;
remoteAddress?: string;
environment?: string;
appName?: string;
properties?: Properties;
}
//# sourceMappingURL=context.d.ts.map