2020-07-01 19:08:08 +00:00
|
|
|
import { DeepPartial } from 'fishery';
|
|
|
|
import { Product } from './product';
|
|
|
|
|
2020-09-07 22:38:12 +00:00
|
|
|
/**
|
|
|
|
* The simple product class.
|
|
|
|
*/
|
2020-07-01 19:08:08 +00:00
|
|
|
export class SimpleProduct extends Product {
|
2020-09-04 18:27:34 +00:00
|
|
|
public constructor( partial: DeepPartial< SimpleProduct > = {} ) {
|
2020-07-01 19:08:08 +00:00
|
|
|
super( partial );
|
|
|
|
Object.assign( this, partial );
|
|
|
|
}
|
|
|
|
}
|