From 239e99a59a8cecfc76342cac0780a5de63688d4d Mon Sep 17 00:00:00 2001 From: Achim Weimert Date: Fri, 14 Sep 2018 13:34:33 +0100 Subject: [PATCH] Add missing return type to attributeChanged --- interfaces.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interfaces.d.ts b/interfaces.d.ts index 41579bdb33..79fb54cde4 100644 --- a/interfaces.d.ts +++ b/interfaces.d.ts @@ -37,7 +37,7 @@ export interface PolymerInit { attached?(): void; detached?(): void; ready?(): void; - attributeChanged?(name: string, old?: string, value?: string); + attributeChanged?(name: string, old?: string, value?: string): void; // Allow any other user-defined properties [others: string]: any;