We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 17b0a00 commit d655b64Copy full SHA for d655b64
api/error.ts
@@ -0,0 +1,9 @@
1
+export type NotMemberError = {
2
+ name: "NotMemberError";
3
+ message: string;
4
+};
5
+
6
+export type NotFoundError = {
7
+ name: "NotFoundError";
8
9
scrapbox.ts
@@ -111,15 +111,6 @@ export interface Project {
111
plan?: string;
112
}
113
114
-export type NotMemberError = {
115
- name: "NotMemberError";
116
- message: string;
117
-};
118
-
119
-export type NotFoundError = {
120
- name: "NotFoundError";
121
122
123
124
/** the response type of https://scrpabox.io/api/projects/:projectname */
125
export type ProjectResponse =
0 commit comments