/** * Represents a command that will be executed against the data cache layer. * @deprecated Use POJOs and the upcoming `ICommandHandler` interface instead. */ export interface IRelayCommand { execute(): Promise; } /** * Represents a parameterized command that will be executed against the data cache layer. * @deprecated Use POJOs and the upcoming `ICommandHandler` interface instead. */ export interface IDataCommand { execute(input: Input): Promise; }