Browse Source

ref(ts): Remove unused types for Breadcrumbs (#34862)

Added in #34197, but 1) was incorrect and 2) unused.
Billy Vong 2 years ago
parent
commit
852dfd6bdc
1 changed files with 0 additions and 9 deletions
  1. 0 9
      static/app/types/breadcrumbs.tsx

+ 0 - 9
static/app/types/breadcrumbs.tsx

@@ -28,7 +28,6 @@ export enum BreadcrumbType {
   SYSTEM = 'system',
   SESSION = 'session',
   TRANSACTION = 'transaction',
-  CONSOLE = 'console',
   INIT = 'init',
 }
 
@@ -80,14 +79,6 @@ export type BreadcrumbTypeHTTP = {
   };
 } & BreadcrumbTypeBase;
 
-export type BreadcrumbTypeConsole = {
-  data: {
-    arguments: any[];
-    logger: string;
-  };
-  type: BreadcrumbType.CONSOLE;
-} & BreadcrumbTypeBase;
-
 export type BreadcrumbTypeDefault = {
   type:
     | BreadcrumbType.INFO