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