123456789101112131415 |
- export interface Client {
- request (method: string, path: string, options: any): void // TODO:
- }
-
- export class PortalClient implements Client {
- constructor () {
- // TODO:
- }
-
- request (method: string, path: string, options: any) {
- // TODO:
- }
- }
-
- export default PortalClient
|