mirror of
https://github.com/NaN-tic/ngx-tryton-json.git
synced 2023-12-14 02:13:00 +01:00
25 lines
No EOL
382 B
TypeScript
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[];
|
|
} |