1.0.0 • Published 8 years ago

@yci/editor v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
8 years ago

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

1.0.0

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago