UNPKG

463 BTypeScriptView Raw
1export declare const proxyInputs: (Cmp: any, inputs: string[]) => void;
2export declare const proxyMethods: (Cmp: any, methods: string[]) => void;
3export declare const proxyOutputs: (instance: any, el: any, events: string[]) => void;
4export declare const defineCustomElement: (tagName: string, customElement: any) => void;
5export declare function ProxyCmp(opts: {
6 defineCustomElementFn?: () => void;
7 inputs?: any;
8 methods?: any;
9}): (cls: any) => any;