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

@@ -83,28 +83,6 @@ import InfiniteScroll from "@/components/InfiniteScroll";
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: { InfiniteScroll, AlertMessage, QuickNav },
})