// Define TypeScript interface for service `nedb1`. (Can be re-generated.) // !code: imports // !end // !code: init // !end // tslint:disable-next-line:no-empty-interface export interface Nedb1Base { // ! code: interface id: unknown; nedb2Id: unknown; // !end } // tslint:disable-next-line:no-empty-interface export interface Nedb1 extends Nedb1Base { // ! code: more id: any; // change if needed nedb2Id: any; // change if needed // !end } // !code: funcs // !end // !code: end // !end