export interface {{toInterface name}} {    
    {{#each events}}
    {{this}}: INopeObservable<unknown>;
    {{/each}}
    
    {{#each properties}}
    {{this}}: INopeObservable<unknown>;
    {{/each}}

    {{#each methods}}
    {{this}}(): Promise<unknown>;
    {{/each}}
}