ngx-ts-serializer
v1.1.0-rc.3
Published
[![npm version](https://badge.fury.io/js/ts-serializer-core.svg)](https://badge.fury.io/js/ngx-ts-serializer) ![NPM](https://img.shields.io/npm/l/ngx-ts-serializer) ![GitHub repo size](https://img.shields.io/github/repo-size/ts-serializer/ngx-ts-serialize
Downloads
33
Readme
ngx-ts-serializer
Summary
Introduction
Ngx-Ts-Serializer is a angular wrapper of ts-serializer-core library.
Installation
npm i ngx-ts-serializer
How to use
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxTsSerializerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {
}
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent {
public constructor(serialize: NgxTsSerializerService) {
}
}