@bexis2/bexis2-core-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
43 lines (42 loc) • 711 B
JavaScript
export class Send {
id;
limit;
offset;
q;
version;
filter;
order;
constructor() {
this.id = 0;
this.limit = 10;
this.offset = 0;
this.version = 0;
this.q = '';
this.filter = [];
this.order = [];
}
}
export class Receive {
count;
data;
send;
columns;
constructor() {
this.count = 0;
this.data = [];
this.send = new Send();
this.columns = [];
}
}
export class errorType {
statusText;
status;
error;
stackTrace;
constructor() {
this.statusText = '';
this.status = 0;
this.error = '';
this.stackTrace = '';
}
}