private getTags()

in client/src/lang/fixtures/TestTypeaheadHelpers.ts [27:35]


  private getTags(): Promise<TextSuggestionOption[]> {
    return Promise.resolve([
      new TextSuggestionOption(
        "Tags are magic",
        "tags-are-magic",
        "A magic tag"
      ),
    ]);
  }