The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/client/main.d.ts

12 lines
337 B

/* eslint-disable @typescript-eslint/interface-name-prefix */
declare module 'meteor/reactive-dict' {
const ReactiveDict: ReactiveDictStatic;
interface ReactiveDictStatic {
new <T>(name: string, initialValue?: T): ReactiveDict<T>;
}
interface ReactiveDict<T> {
get(name: string): T;
set(name: string, newValue: T): void;
}
}