8ebac41318
* refactor(server): tsconfigs * chore: dummy commit * fix: start.sh * chore: restore original entry scripts
8 lines
216 B
TypeScript
8 lines
216 B
TypeScript
import { SmartInfoEntity } from '@app/infra/entities';
|
|
|
|
export const ISmartInfoRepository = 'ISmartInfoRepository';
|
|
|
|
export interface ISmartInfoRepository {
|
|
upsert(info: Partial<SmartInfoEntity>): Promise<void>;
|
|
}
|