mirror of
https://github.com/vitest-dev/vitest.git
synced 2025-12-08 18:26:03 +00:00
19 lines
307 B
TypeScript
19 lines
307 B
TypeScript
const usersData = [{
|
|
id: 1,
|
|
name: 'John Snow',
|
|
email: 'john@got.com',
|
|
}, {
|
|
id: 2,
|
|
name: 'Daenerys Targaryen',
|
|
email: 'daenerys@got.com',
|
|
}, {
|
|
id: 3,
|
|
name: 'Arya Stark',
|
|
email: 'arya@got.com',
|
|
}, {
|
|
id: 4,
|
|
name: 'Rhaenyra Targaryen',
|
|
email: 'rhaenyra@hod.com',
|
|
}]
|
|
export { usersData }
|