@yci/editor
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

Build Status Coverage Status MIT license

@yci/editor

Installation

  1. Install the Ionic plugin
 npm i -S @yci/editor
  1. Add it to your app’s NgModule.
// Import your library
import { EditorModule } from '@yci/editor';

@NgModule({

  ...

  imports: [

    ...

    // Specify your library as an import
    EditorModule.forRoot()
  ],
  
  ...

})
export class AppModule { }

Usage

Once your library is imported, you can use its service in your Angular application:

import { Editor } from '@yci/editor'

constructor(public editor: Editor) {
  editor.edit(...);
}

Development

To generate all *.js, *.d.ts and *.metadata.json files:

$ npm run build

License

MIT © Yu Chen

Readme

Keywords

Package Sidebar

Install

npm i @yci/editor

Weekly Downloads

0

Version

1.0.0

License

MIT

Last publish

Collaborators

  • kuyoonjo