0
Fork 0
mirror of https://github.com/fastmail/Squire.git synced 2024-12-22 07:13:08 -05:00

Add autocomplete to config in Squire constructor

This commit is contained in:
Callum Skeet 2023-07-31 11:09:48 +10:00
parent f1657acbc4
commit a74ec739b9
3 changed files with 5 additions and 5 deletions

4
dist/squire.js.map vendored

File diff suppressed because one or more lines are too long

4
dist/squire.mjs.map vendored

File diff suppressed because one or more lines are too long

View file

@ -120,7 +120,7 @@ class Squire {
_mutation: MutationObserver;
constructor(root: HTMLElement, config?: object) {
constructor(root: HTMLElement, config?: Partial<SquireConfig>) {
this._root = root;
this._config = this._makeConfig(config);