ngx-tryton-json/json-interface.ts
2017-11-02 12:42:38 +01:00

25 lines
No EOL
382 B
TypeScript

/**
* Creates the interfaces to create the JSON objects
*
* DO NOT MODIFY THIS FILE, EXTEND THE INTERFACES INSTEAD
*/
/*
Storage of the JSON
*/
export interface RootSend {
root: Array<Send>;
}
/*
Temportary storage of a node
*/
export interface Send {
[method: string]: any[];
}
/*
Storage for the write JSON
*/
export interface Write {
[method:string]: any[];
}