decla-red/frontend/src/scripts/commands/command.ts
2020-07-19 13:50:03 +02:00

6 lines
158 B
TypeScript

import { Typed } from '../transport/serializable';
import { Id } from '../identity/identity';
export abstract class Command extends Typed {
target?: Id;
}