16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
import Authentication from './authentication';
|
|
import {
|
|
IService,
|
|
IAuthentication,
|
|
IApp,
|
|
IJSONObject,
|
|
} from '@automatisch/types';
|
|
|
|
export default class Slack implements IService {
|
|
authenticationClient: IAuthentication;
|
|
|
|
constructor(appData: IApp, connectionData: IJSONObject) {
|
|
this.authenticationClient = new Authentication(appData, connectionData);
|
|
}
|
|
}
|