Skip to content

Commit

Permalink
Remove unused lines.
Browse files Browse the repository at this point in the history
  • Loading branch information
maejima-fumika committed Feb 13, 2025
1 parent cedd4c4 commit 1e09f8b
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions notebook/src/utils/type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ export type MemInfo = {

export type ReplStateT = 'initial' | 'loading' | 'activated' | 'installing' | 'successfully installed' | 'failed to install'

// export type CellStateT = 'user-writing' | 'compiling' | 'sending' | 'executing' | 'done'

export enum CellStateT {
UserWriting,
Compiling,
Expand All @@ -30,13 +28,3 @@ export type CellT =
{state: CellStateT.Sending, id: number, code: string, time: CellTimeT} |
{state: CellStateT.Executing, id: number, code: string, time: CellTimeT} |
{state: CellStateT.Done, id: number, code: string, time: CellTimeT}


// export type CellT = {
// id: number,
// code: string,
// state: CellStateT,
// compileError?: string,
// time?: CellTimeT
// }

0 comments on commit 1e09f8b

Please sign in to comment.