diff --git a/speakingurl/index.d.ts b/speakingurl/index.d.ts
index 289c1eb033..83e38fd7b8 100644
--- a/speakingurl/index.d.ts
+++ b/speakingurl/index.d.ts
@@ -1,4 +1,4 @@
-// Type definitions for speakingurl 10.0
+// Type definitions for speakingurl 13.0
// Project: http://pid.github.io/speakingurl/
// Definitions by: Zlatko Andonovski
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
@@ -7,7 +7,7 @@ interface Dictionary {
[x: string]: T;
}
-interface Options {
+interface SpeakingURLOptions {
separator?: string;
lang?: string|boolean;
symbols?: boolean;
@@ -20,10 +20,10 @@ interface Options {
custom?: string[]|Dictionary;
}
-declare function getSlug(input: string, options?: Options|string): string;
+declare function getSlug(input: string, options?: SpeakingURLOptions|string): string;
declare namespace getSlug {
- export function createSlug(options: Options): (input: string) => string;
+ export function createSlug(options: SpeakingURLOptions): (input: string) => string;
}
-export = getSlug;
\ No newline at end of file
+export = getSlug;