UNPKG
@sinotron/core
Version:
latest (0.0.7-alpha)
0.0.7-alpha
0.0.6-alpha
0.0.4-alpha
0.0.2-alpha
0.0.1-alpha
Simple framework for Typescript Electron projects
@sinotron/core
/
dist
/
lib
/
base-api.client.d.ts
10 lines
(9 loc)
•
216 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
export declare
abstract
class
BaseApiClient
<
T
> {
readonly
key:
string
;
protected
constructor
(
key:
string
)
;
/** * Implement the client interface. */
abstract
impl
(): T
; expose():
void
; }