5 lines
188 B
TypeScript
5 lines
188 B
TypeScript
|
import { TSubscriptionModel } from './ISubscription';
|
||
|
|
||
|
export type TDataSelect = Pick<TSubscriptionModel, 'rid'> &
|
||
|
Partial<Pick<TSubscriptionModel, 't' | 'name' | 'teamMain' | 'alert'>>;
|