| 63 | } |
| 64 | |
| 65 | interface BaseOptions { |
| 66 | /** |
| 67 | * The Queue name. |
| 68 | * Maximum 160 characters; alphanumeric characters, hyphens (-), and underscores (_) are allowed. |
| 69 | * |
| 70 | * @type {string} |
| 71 | * @memberof BaseQueueOptions |
| 72 | */ |
| 73 | qname: string; |
| 74 | } |
| 75 | |
| 76 | export interface CreateQueueOptions extends BaseOptions { |
| 77 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected