- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
import { ChildCommand } from '../enums/child-command';
|
|
import { JobJson } from './job-json';
|
|
export interface ParentMessage {
|
|
cmd: ChildCommand;
|
|
value?: any;
|
|
err?: Error;
|
|
job?: JobJson;
|
|
}
|