-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcpx-content.d.ts
35 lines (35 loc) · 985 Bytes
/
cpx-content.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
export declare class CPXContent extends HTMLElement {
static get tag(): string;
static get observedAttributes(): string[];
_template: any;
get template(): any;
set template(val: any);
_auto: boolean;
_ready: boolean;
get ready(): boolean;
set ready(val: boolean);
_cache: RequestCache;
_url: any;
_data: any;
get auto(): boolean;
set auto(val: boolean);
get cache(): RequestCache;
set cache(val: RequestCache);
get url(): URL;
set url(val: URL);
_lang: string;
get lang(): string;
set lang(val: string);
_placement: any;
get placement(): any;
set placement(val: any);
get data(): any;
set data(val: any);
filterString(facets: any): string;
constructor();
connectedCallback(): Promise<void>;
attributeChangedCallback(name: any, oldVal: any, newVal: any): void;
prepTemplate(): void;
renderTemplate(data: any, ele?: any): void;
render(): Promise<void>;
}