Move almost all interfaces to endorserServer.ts

This commit is contained in:
Matthew Raymer
2023-07-10 18:45:50 +08:00
parent fed23a61ee
commit cef346e487
6 changed files with 50 additions and 72 deletions

View File

@@ -109,28 +109,6 @@ import { accessToken } from "@/libs/crypto";
import AlertMessage from "@/components/AlertMessage";
import QuickNav from "@/components/QuickNav";
/**
* Represents data about a project
**/
interface ProjectData {
/**
* Name of the project
**/
name: string;
/**
* Description of the project
**/
description: string;
/**
* URL referencing information about the project
**/
handleId: string;
/**
* The Identier of the project
**/
rowid: string;
}
@Component({
components: { AlertMessage, QuickNav },
})