Add return types to all functions

This commit is contained in:
CodeAnimal
2014-09-18 22:30:48 +01:00
parent f5c7418b9d
commit cf06922412

View File

@@ -36,9 +36,9 @@ declare module "radius" {
*
* @param path Can be either a path to a file or a directory.
**/
export function add_dictionary(path:string);
export function add_dictionary(path:string): void;
export function unload_dictionaries();
export function unload_dictionaries(): void;