@opensystemslab/map 0.4.8 → 0.4.9
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
import { LitElement } from "lit";
|
2
|
+
declare type Address = {
|
3
|
+
LPI: any;
|
4
|
+
};
|
2
5
|
export declare class AddressAutocomplete extends LitElement {
|
3
6
|
static styles: import("lit").CSSResult;
|
4
7
|
id: string;
|
@@ -14,7 +17,7 @@ export declare class AddressAutocomplete extends LitElement {
|
|
14
17
|
connectedCallback(): void;
|
15
18
|
disconnectedCallback(): void;
|
16
19
|
firstUpdated(): void;
|
17
|
-
_fetchData(offset?: number, prevResults?:
|
20
|
+
_fetchData(offset?: number, prevResults?: Address[]): Promise<void>;
|
18
21
|
render(): import("lit").TemplateResult<1>;
|
19
22
|
/**
|
20
23
|
* dispatches an event for clients to subscribe to
|
@@ -28,3 +31,4 @@ declare global {
|
|
28
31
|
"address-autocomplete": AddressAutocomplete;
|
29
32
|
}
|
30
33
|
}
|
34
|
+
export {};
|