fix(localize): add missing params to .d.ts file for mixin
This commit is contained in:
parent
495e6cb539
commit
9b9d82fc55
2 changed files with 6 additions and 1 deletions
5
.changeset/soft-snakes-decide.md
Normal file
5
.changeset/soft-snakes-decide.md
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@lion/localize': patch
|
||||
---
|
||||
|
||||
Fix onLocaleChanged method missing param types
|
||||
|
|
@ -68,7 +68,7 @@ declare class LocalizeMixinHost {
|
|||
public performUpdate(): Promise<void>;
|
||||
|
||||
public onLocaleReady(): void;
|
||||
public onLocaleChanged(): void;
|
||||
public onLocaleChanged(newLocale: string, oldLocale: string): void;
|
||||
public onLocaleUpdated(): void;
|
||||
public connectedCallback(): void;
|
||||
public disconnectedCallback(): void;
|
||||
|
|
|
|||
Loading…
Reference in a new issue