@bit-ui-libs/common
Version:
This library was generated with [Nx](https://nx.dev).
19 lines (15 loc) • 519 B
text/typescript
import { ChainBaseEvent, CreateChainBaseRequest } from './chain-base';
import { ChainServiceEventData } from './customer-service';
export interface CreateChainServiceRequest extends CreateChainBaseRequest {
data: CreateChainBaseRequest['data'] & {
service?: ChainServiceEventData;
};
}
export interface UpdateChainServiceDetailsRequest {
date: string;
service?: ChainServiceEventData;
}
export interface ChainServiceEvent extends ChainBaseEvent {
serviceType?: string;
data: ChainServiceEventData;
}