(name: string)
| 34 | /** Mark where a credential input renders inside a template value: |
| 35 | * `["Bearer ", variable("token")]`. */ |
| 36 | export const variable = (name: string): AuthTemplateVariable => ({ type: "variable", name }); |
| 37 | |
| 38 | const VariablePart = Schema.Struct({ |
| 39 | type: Schema.Literal("variable"), |
no outgoing calls
no test coverage detected