feat(elements): rename API to createCustomElement (#22413)

PR Close #22413
This commit is contained in:
Andrew Seguin
2018-03-14 13:24:27 -07:00
committed by Miško Hevery
parent 39a12d2c3d
commit 167fdf745c
5 changed files with 12 additions and 12 deletions

View File

@ -1,5 +1,5 @@
/** @experimental */
export declare function createNgElementConstructor<P>(component: Type<any>, config: NgElementConfig): NgElementConstructor<P>;
export declare function createCustomElement<P>(component: Type<any>, config: NgElementConfig): NgElementConstructor<P>;
/** @experimental */
export declare abstract class NgElement extends HTMLElement {