utils.d.ts 463 B

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