TimeTrex/interface/html5/model/ResponseObject.js

14 lines
234 B
JavaScript
Raw Permalink Normal View History

2022-12-13 07:10:06 +01:00
import { Base } from './Base';
export class ResponseObject extends Base {
constructor( options = {} ) {
_.defaults( options, {
onResult: null,
onError: null,
delegate: null,
async: null
} );
super( options );
}
}