Skip to content

add registerElement to NativeScriptVueConstructor #413

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Mar 18, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 7 additions & 10 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,16 @@ export interface NativeScriptVue<V = View> extends Vue {
export interface NativeScriptVueConstructor extends VueConstructor<NativeScriptVue> {
navigateTo: navigateTo
navigateBack: () => void
/**
* Registers NativeScript Plugin.
* @param elementName Name of the element to use in your template
* @param resolver function to register the element
* @param meta meta associated with the element
*/
registerElement: (elementName: string, resolver: Function, meta?: any) => void
}

export const NativeScriptVue: NativeScriptVueConstructor

export default NativeScriptVue;

// export as namespace NativeScriptVue;

/**
* Registers NativeScript Plugin.
* @param elementName Name of the element to use in your template
* @param resolver function to register the element
* @param meta meta associated with the element
*/
export function registerElement(elementName: string, resolver: Function, meta?: any): void;
export default NativeScriptVue;