(scope: ServerScope, parts: string[])
| 13 | } |
| 14 | |
| 15 | function compose(scope: ServerScope, parts: string[]) { |
| 16 | return [fragment("Server scope", scope), ...parts.map((part) => fragment("Scoped key part", part))].join(separator) |
| 17 | } |
| 18 | |
| 19 | export const ServerScope = { |
| 20 | local: "local" as ServerScope, |