12 lines
294 B
TypeScript
12 lines
294 B
TypeScript
export interface ParentOptions {
|
|
/**
|
|
* Parent identifier.
|
|
*/
|
|
id: string;
|
|
/**
|
|
* It includes the prefix, the namespace separator :, and queue name.
|
|
* @see {@link https://www.gnu.org/software/gawk/manual/html_node/Qualified-Names.html}
|
|
*/
|
|
queue: string;
|
|
}
|