mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-05 00:56:06 +00:00
27 lines
658 B
TypeScript
27 lines
658 B
TypeScript
import { bibiBloxberg } from './bibi-bloxberg'
|
|
import { bobBaumeister } from './bob-baumeister'
|
|
import { garrickOllivander } from './garrick-ollivander'
|
|
import { peterLustig } from './peter-lustig'
|
|
import { raeuberHotzenplotz } from './raeuber-hotzenplotz'
|
|
import { stephenHawking } from './stephen-hawking'
|
|
import { UserInterface } from './UserInterface'
|
|
|
|
export {
|
|
type UserInterface,
|
|
bibiBloxberg,
|
|
bobBaumeister,
|
|
garrickOllivander,
|
|
peterLustig,
|
|
raeuberHotzenplotz,
|
|
stephenHawking
|
|
}
|
|
|
|
export const users: UserInterface[] = [
|
|
peterLustig,
|
|
bibiBloxberg,
|
|
bobBaumeister,
|
|
raeuberHotzenplotz,
|
|
stephenHawking,
|
|
garrickOllivander,
|
|
]
|