actor.tsx 238 B

1234567891011
  1. import type {Actor as ActorType} from 'sentry/types';
  2. export function Actor(params: Partial<ActorType> = {}): ActorType {
  3. return {
  4. id: '1',
  5. email: 'foo@example.com',
  6. name: 'Foo Bar',
  7. type: 'user',
  8. ...params,
  9. };
  10. }