You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

9 lines
463 B

export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
export declare const defineCustomElement: (tagName: string, customElement: any) => void;
export declare function ProxyCmp(opts: {
defineCustomElementFn?: () => void;
inputs?: any;
methods?: any;
}): (cls: any) => any;