mirror of
https://github.com/datahub-project/datahub.git
synced 2025-10-23 15:04:54 +00:00
16 lines
310 B
TypeScript
16 lines
310 B
TypeScript
import { IUser } from 'wherehows-web/typings/api/authentication/user';
|
|
|
|
export default <Array<IUser>>[
|
|
{
|
|
departmentNum: 42,
|
|
email: 'hitchiker@linkedin.com',
|
|
id: 1337,
|
|
name: 'fake user',
|
|
userName: 'p0wn',
|
|
userSetting: {
|
|
defaultWatch: '',
|
|
detailDefaultView: ''
|
|
}
|
|
}
|
|
];
|