Compare commits

...

2 Commits

Author SHA1 Message Date
Reinaldo Neto 10b49c14c0 roolback rocketchat.js 2022-03-11 13:43:28 -03:00
Reinaldo Neto bfdc53a48d Chore: Migrate REST API - e2eFetchMyKeys to Typescript 2022-03-11 13:26:16 -03:00
1 changed files with 3 additions and 0 deletions

View File

@ -15,4 +15,7 @@ export type E2eEndpoints = {
'e2e.setRoomKeyID': { 'e2e.setRoomKeyID': {
POST: (params: { rid: string; keyID: string }) => {}; POST: (params: { rid: string; keyID: string }) => {};
}; };
'e2e.fetchMyKeys': {
GET: () => { public_key: string; private_key: string };
};
}; };