frontend-tutorial-framework/src/app/message-types/set-value-command.ts

4 lines
52 B
TypeScript

export interface SetValueCommand<T> {
value: T;
}