* Encodes an external ID that combines a discriminator with its identifier, * e.g. `wiki:{wikiId}:{pagePath}` or `wi:{id}`.
(id: number)
| 167 | * e.g. `wiki:{wikiId}:{pagePath}` or `wi:{id}`. |
| 168 | */ |
| 169 | function workItemExternalId(id: number): string { |
| 170 | return `wi:${id}` |
| 171 | } |
| 172 | |
| 173 | function wikiPageExternalId(wikiId: string, pagePath: string): string { |
| 174 | return `wiki:${wikiId}:${pagePath}` |
no outgoing calls
no test coverage detected