From 1652a7db19fde1d1a298db74d97aefff24c5f4a2 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 6 Feb 2019 11:22:46 -0800 Subject: [PATCH] Fix cssResult.toString type --- src/lib/css-tag.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/css-tag.ts b/src/lib/css-tag.ts index eb180902..e508be3e 100644 --- a/src/lib/css-tag.ts +++ b/src/lib/css-tag.ts @@ -44,7 +44,7 @@ export class CSSResult { return this._styleSheet; } - toString(): String { + toString(): string { return this.cssText; } }