ucap-lg-web/src/app/models/user-store.ts
richard-loafle 14516f5516 bug fixed
2020-04-03 17:05:33 +09:00

10 lines
201 B
TypeScript

import { UserStore as UCAPUserStore } from '@ucap/core';
import { Settings } from './settings';
export interface UserStore extends UCAPUserStore {
idleCheckTime?: number;
settings?: Settings;
}