parent-options.d.ts 294 B

1234567891011
  1. export interface ParentOptions {
  2. /**
  3. * Parent identifier.
  4. */
  5. id: string;
  6. /**
  7. * It includes the prefix, the namespace separator :, and queue name.
  8. * @see {@link https://www.gnu.org/software/gawk/manual/html_node/Qualified-Names.html}
  9. */
  10. queue: string;
  11. }