partial support replaceable event

This commit is contained in:
Ren Amamiya
2023-09-16 16:06:01 +07:00
parent 11ad281d72
commit 1206486016
5 changed files with 144 additions and 102 deletions

11
src/utils/types.d.ts vendored
View File

@@ -111,3 +111,14 @@ export interface NostrBuildResponse extends Response {
}>;
};
}
export interface Resource {
id: string;
title: string;
image: string;
}
export interface Resources {
title: string;
data: Array<Resource>;
}