UNPKG

@sinotron/core

Version:

Simple framework for Typescript Electron projects

10 lines (9 loc) 216 B
export declare abstract class BaseApiClient<T> { readonly key: string; protected constructor(key: string); /** * Implement the client interface. */ abstract impl(): T; expose(): void; }