checkpoints.ts 190 B

12345
  1. export type CheckpointStorage = "task" | "workspace"
  2. export const isCheckpointStorage = (value: string): value is CheckpointStorage => {
  3. return value === "task" || value === "workspace"
  4. }