Expose plugin signing keys API

This commit is contained in:
2026-05-08 16:12:42 -04:00
parent cb115b61fe
commit e425ea903c
4 changed files with 154 additions and 4 deletions
+5 -1
View File
@@ -1,4 +1,8 @@
export interface ElyKvNamespace {
get(key: string): Promise<string | null>;
}
export interface Env {
ELY_KV: KVNamespace;
ELY_KV: ElyKvNamespace;
ELY_ENVIRONMENT: string;
}