communication type typing
This commit is contained in:
parent
f673dec5fa
commit
72c47ba212
5 changed files with 34 additions and 8 deletions
|
@ -1,12 +1,14 @@
|
|||
import { CommunicationFieldType } from "../type/fieldTypes";
|
||||
|
||||
export interface CreateCommunicationTypeCommand {
|
||||
type: string;
|
||||
useColumns: Array<string>;
|
||||
useColumns: Array<CommunicationFieldType>;
|
||||
}
|
||||
|
||||
export interface UpdateCommunicationTypeCommand {
|
||||
id: number;
|
||||
type: string;
|
||||
useColumns: Array<string>;
|
||||
useColumns: Array<CommunicationFieldType>;
|
||||
}
|
||||
|
||||
export interface DeleteCommunicationTypeCommand {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue