Rename uehrli.ts to uhr.ts, reformat the whole code base and fix typings problems.

This commit is contained in:
Manuel Friedli 2019-05-05 01:54:28 +02:00
parent 5420f9c817
commit 1929209937
16 changed files with 65 additions and 858 deletions

View file

@ -14,7 +14,7 @@
*/
import WidgetCommonProperties = JQueryUI.WidgetCommonProperties;
import {Uehrli} from "../uehrli";
import {Uhr} from "../uhr";
import {Options} from "./options";
export interface WidgetPrototype extends WidgetCommonProperties {
@ -29,5 +29,5 @@ export interface WidgetPrototype extends WidgetCommonProperties {
width: (width: string) => void;
_create: () => void;
_destroy: () => void;
__fritteli_uhr_instance: Uehrli;
__fritteli_uhr_instance: Uhr;
}