This repository has been archived on 2025-09-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
resolver/app/reducers/circles/CircleState.ts

26 lines
543 B
TypeScript

import { Circle } from "domain/circles";
/**
* Circle state
*
* @export
* @class CircleState
*/
export class CircleState {
/**
* The list of Circles belong to users
*
* @type {({[userId: string]: {[circleId: string]: Circle}} | null)}
* @memberof CircleState
*/
userCircles: {[userId: string]: {[circleId: string]: Circle}} = {};
/**
* If user circles are loaded {true} or not {false}
*
* @type {Boolean}
* @memberof CircleState
*/
loaded: Boolean = false;
}