@paycargo/js-angular
Version:
First, run `npm i @paycargo/js-angular` in your Command Line Interface. Afterwards, the following dependency will be found in the `package.json`. The ellipses (...) represent the presence of other possible code.
10 lines (9 loc) • 463 B
TypeScript
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;