- 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
21 lines
401 B
TypeScript
21 lines
401 B
TypeScript
import { JobsOptions } from '../types';
|
|
/**
|
|
* Describes the parent for a Job.
|
|
*/
|
|
export interface Parent<T> {
|
|
name: string;
|
|
prefix?: string;
|
|
queue?: string;
|
|
data?: T;
|
|
opts?: JobsOptions;
|
|
}
|
|
export interface ParentKeys {
|
|
id: string;
|
|
queueKey: string;
|
|
}
|
|
export type ParentOpts = {
|
|
waitChildrenKey?: string;
|
|
parentDependenciesKey?: string;
|
|
parentKey?: string;
|
|
};
|