mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 05:10:31 +00:00
feat: Design with inversion dependency injection architecture. feat: Prettier http middleware. feat: Re-write items categories with preferred accounts.
5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
|
|
export default interface SMSClientInterface {
|
|
clientName: string;
|
|
send(to: string, message: string): boolean;
|
|
} |