Delete workspace type file

This commit is contained in:
seunghyunOh
2022-12-06 06:15:58 +09:00
parent 4a105a72e9
commit 9e73b3431e
2 changed files with 8 additions and 10 deletions

View File

@ -1,7 +1,13 @@
import { Workspaces } from "types/workspaces";
import SecurityClient from "~/utilities/SecurityClient";
interface Workspaces {
__v: number;
_id: string;
name: string;
organization: string;
}
[];
/**
* This route lets us get the workspaces of a certain user
* @returns

View File

@ -1,8 +0,0 @@
export interface WorkSpace {
__v: number;
_id: string;
name: string;
organization: string;
}
type Workspaces = WorkSpace[];