mirror of https://github.com/zulip/zulip.git
12 lines
348 B
Plaintext
12 lines
348 B
Plaintext
// @flow strict
|
|
|
|
declare export var RESOLVED_TOPIC_PREFIX: string;
|
|
|
|
declare export function is_resolved(topic_name: string): boolean;
|
|
|
|
declare export function resolve_name(topic_name: string): string;
|
|
|
|
declare export function unresolve_name(topic_name: string): string;
|
|
|
|
declare export function display_parts(topic_name: string): [string, string];
|