diff options
-rw-r--r-- | svg.js.d.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/svg.js.d.ts b/svg.js.d.ts index 8ba487d..1fd6b35 100644 --- a/svg.js.d.ts +++ b/svg.js.d.ts @@ -841,9 +841,11 @@ declare namespace svgjs { }
interface Parent {
font(font: FontData): this;
+ font(key: string, value: any): this;
}
interface Text {
font(font: FontData): this;
+ font(key: string, value: any): this;
}
// text.js
|